From: Raymond Hettinger Date: Tue, 20 Jan 2009 02:24:38 +0000 (+0000) Subject: Add Counter() to __all__. X-Git-Tag: v2.7a1~2242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=562a4ada56e0a46a6cb02b4050ab4faad7157d31;p=python Add Counter() to __all__. --- diff --git a/Lib/collections.py b/Lib/collections.py index fe33a128ba..1d3fb40252 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 *