[Python-checkins] r83313 - python/branches/py3k/Lib/_abcoll.py
raymond.hettinger
python-checkins at python.org
Sat Jul 31 09:12:50 CEST 2010
Author: raymond.hettinger
Date: Sat Jul 31 09:12:50 2010
New Revision: 83313
Log:
Only expose the abstract base classes.
The concrete types are for internal use (registration).
We are not trying to resurrect the types module
in collections.
Modified:
python/branches/py3k/Lib/_abcoll.py
Modified: python/branches/py3k/Lib/_abcoll.py
==============================================================================
--- python/branches/py3k/Lib/_abcoll.py (original)
+++ python/branches/py3k/Lib/_abcoll.py Sat Jul 31 09:12:50 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