Author: Lukas Diekmann <[email protected]>
Branch: set-strategies
Changeset: r49248:4b7161bb5ef7
Date: 2011-10-14 15:59 +0200
http://bitbucket.org/pypy/pypy/changeset/4b7161bb5ef7/

Log:    one more abstract method fix

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
@@ -204,7 +204,7 @@
 
     # __________________ methods called on W_SetObject _________________
 
-    def clear(self):
+    def clear(self, w_set):
         raise NotImplementedError
 
     def copy(self, w_set):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to