commit | 562a4ada56e0a46a6cb02b4050ab4faad7157d31 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Tue Jan 20 02:24:38 2009 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Tue Jan 20 02:24:38 2009 +0000 |
tree | 592deb03899b691996f59cb4523c72d511fde99a | |
parent | bad1eb2ff3815909978fd71520980f67fd6501a3 [diff] [blame] |
Add Counter() to __all__.
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 *