Created
May 8, 2009 20:47
-
-
Save k0001/108999 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> def bar(): | |
... bar.x = 3 | |
... | |
>>> | |
>>> bar.x | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
AttributeError: 'function' object has no attribute 'x' | |
>>> bar() | |
>>> bar.x | |
3 | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment