Commit 2eb24cb5 authored by Raymond Hettinger's avatar Raymond Hettinger

MappingView is Sized.

parent cbe15e15
......@@ -382,7 +382,7 @@ class Mapping(Sized, Iterable, Container):
return not (self == other)
class MappingView(metaclass=ABCMeta):
class MappingView(Sized):
def __init__(self, mapping):
self._mapping = mapping
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment