Skip to content

Commit

Permalink
Merge pull request #66 from erezsh/dev4
Browse files Browse the repository at this point in the history
Fix eq/hash for copies of Python types
  • Loading branch information
erezsh authored Oct 15, 2024
2 parents 7ff7204 + 5cf3a25 commit 4c177b0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions runtype/base_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def __mul__(self, other: _Type):
def __le__(self, other):
return NotImplemented


class AnyType(Type):
"""Represents the Any type.
Expand Down
9 changes: 9 additions & 0 deletions runtype/pytypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,15 @@ def cast_from(self, obj):

return obj

def __eq__(self, other):
if type(other) != type(self):
return False
return self.kernel == other.kernel

def __hash__(self):
return hash((type(self), self.kernel))


class TupleType(PythonType):
def test_instance(self, obj, sampler=None):
return isinstance(obj, tuple)
Expand Down

0 comments on commit 4c177b0

Please sign in to comment.