[pypy-commit] pypy set-strategies: forgot argument for abstract method copy

l.diekmann noreply at buildbot.pypy.org
Thu Nov 10 13:52:12 CET 2011


Author: Lukas Diekmann <lukas.diekmann at uni-duesseldorf.de>
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):


More information about the pypy-commit mailing list