Skip to content

Instantly share code, notes, and snippets.

@alfasin
Created December 13, 2015 01:10
Show Gist options
  • Save alfasin/32a50c4817ebf8b390fd to your computer and use it in GitHub Desktop.
Save alfasin/32a50c4817ebf8b390fd to your computer and use it in GitHub Desktop.
class Obj:
def __init__(self, n):
self.n = n
a = {'albert': Obj(2015)}
l = []
l.append(a)
b = {'albert': Obj(2015)}
print(b in l) # False!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment