[pypy-commit] pypy default: bah, I don't know why I did it, but the fix in abaf35bf5217 actually breaks things. Revert

antocuni noreply at buildbot.pypy.org
Thu Jul 21 17:02:00 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r45826:ebd8af15b4e6
Date: 2011-07-21 17:00 +0200
http://bitbucket.org/pypy/pypy/changeset/ebd8af15b4e6/

Log:	bah, I don't know why I did it, but the fix in abaf35bf5217 actually
	breaks things. Revert

diff --git a/pypy/objspace/std/dictproxyobject.py b/pypy/objspace/std/dictproxyobject.py
--- a/pypy/objspace/std/dictproxyobject.py
+++ b/pypy/objspace/std/dictproxyobject.py
@@ -86,7 +86,7 @@
 
     def clear(self, w_dict):
         self.unerase(w_dict.dstorage).dict_w.clear()
-        self.unerase(w_dict.dstorage).mutated()
+        self.unerase(w_dict.dstorage).mutated(None)
 
 class DictProxyIteratorImplementation(IteratorImplementation):
     def __init__(self, space, strategy, dictimplementation):


More information about the pypy-commit mailing list