[pypy-commit] pypy set-strategies: possible fix for translation

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


Author: Lukas Diekmann <lukas.diekmann at uni-duesseldorf.de>
Branch: set-strategies
Changeset: r49244:64942a5fcc0f
Date: 2011-10-14 15:11 +0200
http://bitbucket.org/pypy/pypy/changeset/64942a5fcc0f/

Log:	possible fix for translation

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
@@ -196,11 +196,11 @@
         """ Returns an empty storage (erased) object. Used to initialize an empty set."""
         raise NotImplementedError
 
-    def erase(self, storage):
-        raise NotImplementedError
+    #def erase(self, storage):
+    #    raise NotImplementedError
 
-    def unerase(self, storage):
-        raise NotImplementedError
+    #def unerase(self, storage):
+    #    raise NotImplementedError
 
     # __________________ methods called on W_SetObject _________________
 


More information about the pypy-commit mailing list