aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>2021-05-11 20:58:53 +0200
committerCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>2021-05-11 20:58:53 +0200
commit929d011f7099ad93ffba427c5fd459b7f945199d (patch)
tree6ae7df1d8c79c66ac7e9d7c0b9c6dc49c0e88f39
parentmake sure that DictStrategy has either default implementations of all methods, (diff)
downloadpypy-929d011f7099ad93ffba427c5fd459b7f945199d.tar.gz
pypy-929d011f7099ad93ffba427c5fd459b7f945199d.tar.bz2
pypy-929d011f7099ad93ffba427c5fd459b7f945199d.zip
-rw-r--r--pypy/objspace/std/dictmultiobject.py2
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):