Skip to content

Instantly share code, notes, and snippets.

@agronholm
Created December 17, 2013 22:09
Show Gist options
  • Save agronholm/8013477 to your computer and use it in GitHub Desktop.
Save agronholm/8013477 to your computer and use it in GitHub Desktop.
def outer(key=None):
def inner():
key = key or ''
print(key)
return inner
outer()()
UnboundLocalError: local variable 'key' referenced before assignment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment