Skip to content

Instantly share code, notes, and snippets.

@rec
Created January 1, 2020 06:33
Show Gist options
  • Save rec/6815e547e6abfc75a04722b293f852cc to your computer and use it in GitHub Desktop.
Save rec/6815e547e6abfc75a04722b293f852cc to your computer and use it in GitHub Desktop.
class Mutable:
pass
foo, bar = Mutable(), Mutable()
foo.x = 1 # It's mutable!
d = {foo: 'foo', bar: 'bar'}
print(d[foo])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment