Skip to content

Instantly share code, notes, and snippets.

@notmyname
Created September 25, 2015 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save notmyname/bed03c9796bc9dcada1b to your computer and use it in GitHub Desktop.
Save notmyname/bed03c9796bc9dcada1b to your computer and use it in GitHub Desktop.
def foo():
try:
yield 1
finally:
yield 2
for i in foo():
print i
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment