Author: Lukas Diekmann <[email protected]>
Branch: set-strategies
Changeset: r49246:82bf144b8c88
Date: 2011-10-14 15:44 +0200
http://bitbucket.org/pypy/pypy/changeset/82bf144b8c88/

Log:    forgot argument for abstract method copy

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
@@ -207,7 +207,7 @@
     def clear(self):
         raise NotImplementedError
 
-    def copy(self):
+    def copy(self, w_set):
         raise NotImplementedError
 
     def length(self, w_set):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to