Author: Lukas Diekmann <[email protected]>
Branch: set-strategies
Changeset: r49250:0dacc5b60316
Date: 2011-10-14 16:23 +0200
http://bitbucket.org/pypy/pypy/changeset/0dacc5b60316/

Log:    forgot self in method _isdisjoint_wrapped

diff --git a/pypy/objspace/std/setobject.py b/pypy/objspace/std/setobject.py
--- a/pypy/objspace/std/setobject.py
+++ b/pypy/objspace/std/setobject.py
@@ -667,7 +667,7 @@
                 return False
         return True
 
-    def _isdisjoint_wrapped(w_set, w_other):
+    def _isdisjoint_wrapped(self, w_set, w_other):
         d = self.unerase(w_set.sstorage)
         for key in d:
             if w_other.has_key(self.wrap(key)):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to