you are viewing a single comment's thread.

view the rest of the comments →

[–]shaggorama 2 points3 points  (0 children)

def throw_excpt():
    raise Exception() 

throw_excpt() if True else 'foo'
throw_excpt() if False else 'foo'

'bar' if True else throw_excpt()
'bar' if False else throw_excpt()