Skip to content

Instantly share code, notes, and snippets.

@tef
Created January 8, 2015 14:23
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 tef/cfa0ee85ac88ecb5bea4 to your computer and use it in GitHub Desktop.
Save tef/cfa0ee85ac88ecb5bea4 to your computer and use it in GitHub Desktop.
$ cat foo.py
def foo(x):
return x
$ cat bar.py
from foo import foo
def bar():
return foo.x
$ cat baz.py
from foo import foo
foo.x = 1
import bar
print bar.bar()
$ python baz.py
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment