[Python-3000-checkins] r60690 - python/branches/py3k/Lib/_abcoll.py

raymond.hettinger python-3000-checkins at python.org
Sat Feb 9 11:04:32 CET 2008


Author: raymond.hettinger
Date: Sat Feb  9 11:04:32 2008
New Revision: 60690

Modified:
   python/branches/py3k/Lib/_abcoll.py
Log:
MappingView is Sized.

Modified: python/branches/py3k/Lib/_abcoll.py
==============================================================================
--- python/branches/py3k/Lib/_abcoll.py	(original)
+++ python/branches/py3k/Lib/_abcoll.py	Sat Feb  9 11:04:32 2008
@@ -382,7 +382,7 @@
         return not (self == other)
 
 
-class MappingView(metaclass=ABCMeta):
+class MappingView(Sized):
 
     def __init__(self, mapping):
         self._mapping = mapping


More information about the Python-3000-checkins mailing list