[pypy-svn] r31149 - pypy/dist/pypy/objspace/std

mwh at codespeak.net mwh at codespeak.net
Tue Aug 8 00:40:14 CEST 2006


Author: mwh
Date: Tue Aug  8 00:40:13 2006
New Revision: 31149

Modified:
   pypy/dist/pypy/objspace/std/dictmultiobject.py
   pypy/dist/pypy/objspace/std/dictobject.py
   pypy/dist/pypy/objspace/std/dictstrobject.py
Log:
remove unused 'return_entry' methods


Modified: pypy/dist/pypy/objspace/std/dictmultiobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/dictmultiobject.py	(original)
+++ pypy/dist/pypy/objspace/std/dictmultiobject.py	Tue Aug  8 00:40:13 2006
@@ -303,8 +303,6 @@
         w_self.pos = 0
         w_self.setup_iterator()
 
-    def return_entry(w_self, w_key, w_value):
-        raise NotImplementedError
 
 registerimplementation(W_DictMultiIterObject)
 

Modified: pypy/dist/pypy/objspace/std/dictobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/dictobject.py	(original)
+++ pypy/dist/pypy/objspace/std/dictobject.py	Tue Aug  8 00:40:13 2006
@@ -229,8 +229,6 @@
         w_self.pos = 0
         w_self.setup_iterator()
 
-    def return_entry(w_self, w_key, w_value):
-        raise NotImplementedError
 
 registerimplementation(W_DictIterObject)
 

Modified: pypy/dist/pypy/objspace/std/dictstrobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/dictstrobject.py	(original)
+++ pypy/dist/pypy/objspace/std/dictstrobject.py	Tue Aug  8 00:40:13 2006
@@ -363,9 +363,6 @@
         w_self.pos = 0
         w_self.setup_iterator()
 
-    def return_entry(w_self, w_key, w_value):
-        raise NotImplementedError
-
     def handleMutation(w_self):
         space = w_self.space
         w_self.len = -1   # Make this error state sticky



More information about the Pypy-commit mailing list