Created
September 19, 2017 22:59
-
-
Save syadlowsky/37e4b3966b553819ced3a276095f147a to your computer and use it in GitHub Desktop.
This file contains 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: | |
def __init__(self, a={}): | |
self.a = a | |
one = foo() | |
two = foo() | |
two.a["a"] = 2 | |
print one.a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment