Browse Source

Temporary hash value for Graph.

Stefano Cossu 6 năm trước cách đây
mục cha
commit
adf2ad61ba
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      lakesuperior/model/rdf/graph.pyx

+ 2 - 2
lakesuperior/model/rdf/graph.pyx

@@ -300,8 +300,8 @@ cdef class Graph:
 
 
     def __hash__(self):
-        """ TODO Bogus """
-        return self.uri
+        """ TODO Not that great of a hash. """
+        return id(self)
 
 
     ## BASIC PYTHON-ACCESSIBLE SET OPERATIONS ##