[pypy-commit] pypy set-strategies: one more abstract method fix

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


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


More information about the pypy-commit mailing list