Skip to content

Instantly share code, notes, and snippets.

@timmc-edx
Last active June 2, 2020 13:50
Show Gist options
  • Save timmc-edx/29b42059dae89348d7ea570ac3a0cdde to your computer and use it in GitHub Desktop.
Save timmc-edx/29b42059dae89348d7ea570ac3a0cdde to your computer and use it in GitHub Desktop.
terrible scope example in python
# python3 ./first.py
import second
import builtins
builtins.magic = "wow"
second.some_func()
def some_func():
print(magic)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment