Skip to content

Instantly share code, notes, and snippets.

@LastTalon
Created April 7, 2018 18:37
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 LastTalon/5a970d394793d747bc2aeae33c6d6ff4 to your computer and use it in GitHub Desktop.
Save LastTalon/5a970d394793d747bc2aeae33c6d6ff4 to your computer and use it in GitHub Desktop.
def A():
def B():
global g
g = 5
return B
def C():
f = A()
f()
print g
C() # -> 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment