# HG changeset patch # User Paul Boddie # Date 1486314760 -3600 # Node ID c74e02576c73804bbb471cfe48f72833af375ad1 # Parent f27977fdc0b331e2d75fe171adc206ec89221e72 Fixed method call arguments. diff -r f27977fdc0b3 -r c74e02576c73 lib/__builtins__/mapping.py --- a/lib/__builtins__/mapping.py Sun Feb 05 01:45:04 2017 +0100 +++ b/lib/__builtins__/mapping.py Sun Feb 05 18:12:40 2017 +0100 @@ -95,7 +95,7 @@ "Remove the entry associated with the given 'key'." - index, i = self._get_entry(key) + index, i = self._get_entry(self.buckets, key) if index is None or i is None: raise KeyError, key