summaryrefslogtreecommitdiffstats
path: root/Lib/_abcoll.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/_abcoll.py')
-rw-r--r--Lib/_abcoll.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py
index ba084aa..90a78cb 100644
--- a/Lib/_abcoll.py
+++ b/Lib/_abcoll.py
@@ -385,6 +385,7 @@ class Mapping(metaclass=ABCMeta):
def __ne__(self, other):
return not (self == other)
+
class MappingView(metaclass=ABCMeta):
def __init__(self, mapping):