summaryrefslogtreecommitdiff
path: root/table.py
diff options
context:
space:
mode:
Diffstat (limited to 'table.py')
-rw-r--r--table.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/table.py b/table.py
index 5fdc148..f40d3b3 100644
--- a/table.py
+++ b/table.py
@@ -48,6 +48,8 @@ class Table(object):
else:
return list(self) == list(other)
+ __hash__ = object.__hash__
+
def __ne__(self, other):
return not self == other