[pypy-commit] pypy default: translation fix

antocuni noreply at buildbot.pypy.org
Thu Jul 21 16:12:30 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r45820:abaf35bf5217
Date: 2011-07-21 16:11 +0200
http://bitbucket.org/pypy/pypy/changeset/abaf35bf5217/

Log:	translation fix

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(None)
+        self.unerase(w_dict.dstorage).mutated()
 
 class DictProxyIteratorImplementation(IteratorImplementation):
     def __init__(self, space, strategy, dictimplementation):


More information about the pypy-commit mailing list