Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe20b3 commit 7b17a4eCopy full SHA for 7b17a4e
1 file changed
Lib/collections/abc.py
@@ -43,7 +43,7 @@
43
dict_values = type({}.values())
44
dict_items = type({}.items())
45
## misc ##
46
-dict_proxy = type(type.__dict__)
+mappingproxy = type(type.__dict__)
47
48
49
### ONE-TRICK PONIES ###
@@ -405,6 +405,8 @@ def __eq__(self, other):
405
def __ne__(self, other):
406
return not (self == other)
407
408
+Mapping.register(mappingproxy)
409
+
410
411
class MappingView(Sized):
412
0 commit comments