Created
October 18, 2012 10:32
-
-
Save j2labs/3910915 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
>>> class Foo(object): | |
... x = 5 | |
... y = Foo() | |
... | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
File "<stdin>", line 3, in Foo | |
NameError: name 'Foo' is not defined | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment