diff options
author | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2021-05-11 20:58:53 +0200 |
---|---|---|
committer | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2021-05-11 20:58:53 +0200 |
commit | 929d011f7099ad93ffba427c5fd459b7f945199d (patch) | |
tree | 6ae7df1d8c79c66ac7e9d7c0b9c6dc49c0e88f39 | |
parent | make sure that DictStrategy has either default implementations of all methods, (diff) | |
download | pypy-929d011f7099ad93ffba427c5fd459b7f945199d.tar.gz pypy-929d011f7099ad93ffba427c5fd459b7f945199d.tar.bz2 pypy-929d011f7099ad93ffba427c5fd459b7f945199d.zip |
ouch, fix translationrelease-pypy2.7-v7.3.5rc3release-pypy2.7-v7.3.5
-rw-r--r-- | pypy/objspace/std/dictmultiobject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pypy/objspace/std/dictmultiobject.py b/pypy/objspace/std/dictmultiobject.py index d6f9a12ef4..48e538ebb8 100644 --- a/pypy/objspace/std/dictmultiobject.py +++ b/pypy/objspace/std/dictmultiobject.py @@ -524,7 +524,7 @@ class DictStrategy(object): def get_empty_storage(self): raise NotImplementedError - def getitem(self, w_dict): + def getitem(self, w_dict, w_key): raise NotImplementedError def getitem_str(self, w_dict, key): |