diff options
-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): |