Skip to content

Instantly share code, notes, and snippets.

@lihaoyi
Last active November 14, 2015 05:44
Show Gist options
  • Select an option

  • Save lihaoyi/90a6b5e37ccadb73a889 to your computer and use it in GitHub Desktop.

Select an option

Save lihaoyi/90a6b5e37ccadb73a889 to your computer and use it in GitHub Desktop.
>>> a = 1
>>> class Foo:
... a = 2
... print a
... def bar(self):
... print a
...
2
>>> Foo().bar()
1
@lihaoyi
Copy link
Copy Markdown
Author

lihaoyi commented Nov 14, 2015

edit: fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment