Add Counter() to __all__.

This commit is contained in:
Raymond Hettinger 2009-01-20 02:24:38 +00:00
parent bad1eb2ff3
commit 562a4ada56
1 changed files with 1 additions and 1 deletions

View File

@ -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 *