summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-07-31 07:12:50 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-07-31 07:12:50 (GMT)
commit51b401bbe1912c5ea30330d0209a79640353c410 (patch)
treec5617880890c7fa3fd89dea037ae40daa36be605 /Lib
parentb90ffd88f1486896a380ee3a2e2ae0dfc8da1d49 (diff)
downloadcpython-51b401bbe1912c5ea30330d0209a79640353c410.zip
cpython-51b401bbe1912c5ea30330d0209a79640353c410.tar.gz
cpython-51b401bbe1912c5ea30330d0209a79640353c410.tar.bz2
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.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/_abcoll.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/_abcoll.py b/Lib/_abcoll.py
index cc00fd9..7890e97 100644
--- a/Lib/_abcoll.py
+++ b/Lib/_abcoll.py
@@ -18,11 +18,6 @@ __all__ = ["Hashable", "Iterable", "Iterator",
"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",
]