Skip to content

Instantly share code, notes, and snippets.

@kevinjqiu
Created May 3, 2013 16:56
Show Gist options
  • Save kevinjqiu/5511224 to your computer and use it in GitHub Desktop.
Save kevinjqiu/5511224 to your computer and use it in GitHub Desktop.
>>> def foo():
... def bar():
... pass
... return bar
...
>>> foo()
<function bar at 0x7f648fe7d758>
>>> foo()
<function bar at 0x7f648fe7d7d0>
>>> foo()
<function bar at 0x7f648fe7d758>
>>> foo()
<function bar at 0x7f648fe7d7d0>
>>> foo()
<function bar at 0x7f648fe7d758>
>>> foo()
<function bar at 0x7f648fe7d7d0>
>>> foo()
<function bar at 0x7f648fe7d758>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment