Do you mean:
try: foo = '42' except Whatever: raise print "foo is %s" % foo
foo = None try: foo = 42 ...
def foo(): x = 5 def bar(): print x def baz(): x = 6 print x bar() baz() print x
Do you mean:
If so, I really like that feature. It's much clearer to me than what I'd write in another language: