Last active
May 2, 2016 17:59
-
-
Save naftulikay/2cb8f8aa6e576420cf40cd4f42e36716 to your computer and use it in GitHub Desktop.
Bad Things in Python
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 Innocent(object): | |
value = [] | |
i0 = Innocent() | |
i0.value.append("lulz") | |
i1 = Innocent() | |
print(i1.value) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment