Author: Lukas Diekmann <[email protected]>
Branch: 
Changeset: r44441:5190a79c54a2
Date: 2011-04-06 14:47 +0200
http://bitbucket.org/pypy/pypy/changeset/5190a79c54a2/

Log:    Forgot to add space to abstract function

diff --git a/pypy/objspace/std/smalltupleobject.py 
b/pypy/objspace/std/smalltupleobject.py
--- a/pypy/objspace/std/smalltupleobject.py
+++ b/pypy/objspace/std/smalltupleobject.py
@@ -23,10 +23,10 @@
     def getitem(self, index):
         raise NotImplementedError
 
-    def hash(self):
+    def hash(self, space):
         raise NotImplementedError
 
-    def eq(self, w_other):
+    def eq(self, space, w_other):
         raise NotImplementedError
 
 def make_specialized_class(n):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to