Skip to content

Instantly share code, notes, and snippets.

@t184256
Created April 26, 2014 14:13
Show Gist options
  • Save t184256/11321078 to your computer and use it in GitHub Desktop.
Save t184256/11321078 to your computer and use it in GitHub Desktop.
python shatters my logic
#!/usr/bin/python
a = 'sooner'
def parent_func():
print a
# Guess what uncommenting the line below would change?
#a = 'parent'
return a
a = 'later'
print parent_func()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment