Skip to content

Instantly share code, notes, and snippets.

@naftulikay
Last active May 2, 2016 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naftulikay/2cb8f8aa6e576420cf40cd4f42e36716 to your computer and use it in GitHub Desktop.
Save naftulikay/2cb8f8aa6e576420cf40cd4f42e36716 to your computer and use it in GitHub Desktop.
Bad Things in Python
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