Author: Antonio Cuni <[email protected]>
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):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to