[pypy-svn] r35899 - pypy/branch/builtin-call-speedup-2/pypy/objspace/std

mwh at codespeak.net mwh at codespeak.net
Tue Dec 19 19:11:56 CET 2006


Author: mwh
Date: Tue Dec 19 19:11:55 2006
New Revision: 35899

Modified:
   pypy/branch/builtin-call-speedup-2/pypy/objspace/std/dictmultiobject.py
Log:
one small mismerge


Modified: pypy/branch/builtin-call-speedup-2/pypy/objspace/std/dictmultiobject.py
==============================================================================
--- pypy/branch/builtin-call-speedup-2/pypy/objspace/std/dictmultiobject.py	(original)
+++ pypy/branch/builtin-call-speedup-2/pypy/objspace/std/dictmultiobject.py	Tue Dec 19 19:11:55 2006
@@ -407,7 +407,7 @@
             if i != -1:
                 self.shadowed[i] = None
             return self
-        elif self._is_sane_hash(w_key_type):
+        elif _is_sane_hash(space, w_key_type):
             raise KeyError
         else:
             return self._as_rdict().delitem(w_key)



More information about the Pypy-commit mailing list