Created
July 25, 2016 15:32
-
-
Save barrachri/c90b1afbec448e12564317b4845b94a1 to your computer and use it in GitHub Desktop.
Python Code
This file contains hidden or 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 A(): | |
x = 1 | |
a = A() | |
b = A() | |
b.x = 11 | |
a.x # ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment