diff options
author | Raymond Hettinger <python@rcn.com> | 2010-07-31 07:03:42 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-07-31 07:03:42 (GMT) |
commit | 908cb7db8c840c8839d1ec5bfe69d734fbac8456 (patch) | |
tree | 7924493955c60097d4e25f30cd42fbbe5edda9d4 /Lib | |
parent | 7ce3f2ccdd318ace6de8515bfcf2ae72ec231a64 (diff) | |
download | cpython-908cb7db8c840c8839d1ec5bfe69d734fbac8456.zip cpython-908cb7db8c840c8839d1ec5bfe69d734fbac8456.tar.gz cpython-908cb7db8c840c8839d1ec5bfe69d734fbac8456.tar.bz2 |
Only expose the abstract base classes.
The concrete types are for internal use (registration).
Keep from accidentally resurrecting the types module in collections.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/_abcoll.py | 5 |
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", ] |