diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py index c241a9502e7..cc4c4423e8a 100644 --- a/Lib/_abcoll.py +++ b/Lib/_abcoll.py @@ -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