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

fijal at codespeak.net fijal at codespeak.net
Tue Nov 20 15:31:41 CET 2007


Author: fijal
Date: Tue Nov 20 15:31:39 2007
New Revision: 48842

Modified:
   pypy/dist/pypy/objspace/std/dictmultiobject.py
Log:
Mute the warning


Modified: pypy/dist/pypy/objspace/std/dictmultiobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/dictmultiobject.py	(original)
+++ pypy/dist/pypy/objspace/std/dictmultiobject.py	Tue Nov 20 15:31:39 2007
@@ -134,6 +134,11 @@
         self.dictimplementation = None
         return None
 
+    def next_entry(self):
+        """ Purely abstract method
+        """
+        raise NotImplementedError
+
     def length(self):
         if self.dictimplementation is not None:
             return self.len - self.pos



More information about the Pypy-commit mailing list