[Python-checkins] r83312 - python/branches/release31-maint/Lib/_abcoll.py

raymond.hettinger python-checkins at python.org
Sat Jul 31 09:03:43 CEST 2010


Author: raymond.hettinger
Date: Sat Jul 31 09:03:42 2010
New Revision: 83312

Log:
Only expose the abstract base classes.
The concrete types are for internal use (registration).
Keep from accidentally resurrecting the types module in collections.



Modified:
   python/branches/release31-maint/Lib/_abcoll.py

Modified: python/branches/release31-maint/Lib/_abcoll.py
==============================================================================
--- python/branches/release31-maint/Lib/_abcoll.py	(original)
+++ python/branches/release31-maint/Lib/_abcoll.py	Sat Jul 31 09:03:42 2010
@@ -18,11 +18,6 @@
            "MappingView", "KeysView", "ItemsView", "ValuesView",
            "Sequence", "MutableSequence",
            "ByteString",
-           "bytearray_iterator", "bytes_iterator", "dict_itemiterator",
-           "dict_items", "dict_keyiterator", "dict_keys", "dict_proxy",
-           "dict_valueiterator", "dict_values", "list_iterator",
-           "list_reverseiterator", "range_iterator", "set_iterator",
-           "str_iterator", "tuple_iterator", "zip_iterator",
            ]
 
 


More information about the Python-checkins mailing list