[ create a new paste ] login | about

Link: http://codepad.org/fkxVQ9Ad    [ raw code | output | fork ]

mucinesra - Python, pasted on Jun 9:
1
2
3
4
5
6
7
8
def f():
  try:
    print "try"
    return
  finally:
    print "finally"

f()


Output:
1
2
try
finally


Create a new paste based on this one


Comments: