Skip to content

Commit 307689a

Browse files
committed
comment out lines that reference mappingproxy as type doesn't yet have a
__dict__
1 parent a708ce2 commit 307689a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/_collections_abc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
dict_values = type({}.values())
5353
dict_items = type({}.items())
5454
## misc ##
55-
mappingproxy = type(type.__dict__)
55+
# mappingproxy = type(type.__dict__)
5656
# generator = type((lambda: (yield))())
5757
## coroutine ##
5858
# async def _coro(): pass
@@ -688,7 +688,7 @@ def __eq__(self, other):
688688

689689
__reversed__ = None
690690

691-
Mapping.register(mappingproxy)
691+
# Mapping.register(mappingproxy)
692692

693693

694694
class MappingView(Sized):

0 commit comments

Comments
 (0)