Author: Antonio Cuni <[email protected]>
Branch: identity-dict-strategy
Changeset: r45783:cd9422d1a4fa
Date: 2011-07-20 20:48 +0200
http://bitbucket.org/pypy/pypy/changeset/cd9422d1a4fa/
Log: fix translation
diff --git a/pypy/objspace/std/dictmultiobject.py
b/pypy/objspace/std/dictmultiobject.py
--- a/pypy/objspace/std/dictmultiobject.py
+++ b/pypy/objspace/std/dictmultiobject.py
@@ -473,7 +473,7 @@
else:
return None, None
-class _UnwrappedIteratorMixin(IteratorImplementation):
+class _UnwrappedIteratorMixin:
_mixin_ = True
def __init__(self, space, strategy, dictimplementation):
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