Skip to content

Instantly share code, notes, and snippets.

@sarina
Last active August 29, 2015 14:17
Show Gist options
  • Save sarina/c2100b2c3faaf11bc376 to your computer and use it in GitHub Desktop.
Save sarina/c2100b2c3faaf11bc376 to your computer and use it in GitHub Desktop.
def f():
a = 10
def c(flag=False):
if flag:
a = 12
return a # unbound local error! Python is too smart :)
x = c()
return x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment