]> granicus.if.org Git - python/commitdiff
Add Counter() to __all__.
authorRaymond Hettinger <python@rcn.com>
Tue, 20 Jan 2009 02:24:38 +0000 (02:24 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 20 Jan 2009 02:24:38 +0000 (02:24 +0000)
Lib/collections.py

index fe33a128bab555be0d0f8f51c4284a7d00becf11..1d3fb402528c0cc1b98769475067b4fe385232ac 100644 (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 *