mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
bpo-35918: Remove broken has_key method and add test (#11819)
This commit is contained in:
parent
522346d792
commit
a31f4cc881
3 changed files with 3 additions and 3 deletions
|
@ -1135,7 +1135,7 @@ class ListProxy(BaseListProxy):
|
|||
|
||||
DictProxy = MakeProxyType('DictProxy', (
|
||||
'__contains__', '__delitem__', '__getitem__', '__iter__', '__len__',
|
||||
'__setitem__', 'clear', 'copy', 'get', 'has_key', 'items',
|
||||
'__setitem__', 'clear', 'copy', 'get', 'items',
|
||||
'keys', 'pop', 'popitem', 'setdefault', 'update', 'values'
|
||||
))
|
||||
DictProxy._method_to_typeid_ = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue