Skip to content

Commit

Permalink
Address review
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Jul 29, 2023
1 parent 3f865c5 commit 179e17f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Lib/multiprocessing/managers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1165,13 +1165,12 @@ def __imul__(self, value):
BaseDictProxy = MakeProxyType('DictProxy', (
'__contains__', '__delitem__', '__getitem__', '__iter__', '__len__',
'__setitem__', 'clear', 'copy', 'get', 'items',
'keys', 'pop', 'popitem', 'setdefault', 'update', 'values',
'keys', 'pop', 'popitem', 'setdefault', 'update', 'values'
))
BaseDictProxy._method_to_typeid_ = {
'__iter__': 'Iterator',
}
class DictProxy(BaseDictProxy):
_method_to_typeid_ = {
'__iter__': 'Iterator',
}

__class_getitem__ = classmethod(types.GenericAlias)


Expand Down

0 comments on commit 179e17f

Please sign in to comment.