diff options
author | Raymond Hettinger <python@rcn.com> | 2009-01-20 02:24:38 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-01-20 02:24:38 (GMT) |
commit | 562a4ada56e0a46a6cb02b4050ab4faad7157d31 (patch) | |
tree | 592deb03899b691996f59cb4523c72d511fde99a /Lib/collections.py | |
parent | bad1eb2ff3815909978fd71520980f67fd6501a3 (diff) | |
download | cpython-562a4ada56e0a46a6cb02b4050ab4faad7157d31.zip cpython-562a4ada56e0a46a6cb02b4050ab4faad7157d31.tar.gz cpython-562a4ada56e0a46a6cb02b4050ab4faad7157d31.tar.bz2 |
Add Counter() to __all__.
Diffstat (limited to 'Lib/collections.py')
-rw-r--r-- | Lib/collections.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections.py b/Lib/collections.py index fe33a12..1d3fb40 100644 --- a/Lib/collections.py +++ b/Lib/collections.py @@ -1,4 +1,4 @@ -__all__ = ['deque', 'defaultdict', 'namedtuple'] +__all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple'] # For bootstrapping reasons, the collection ABCs are defined in _abcoll.py. # They should however be considered an integral part of collections.py. from _abcoll import * |