[Python-checkins] r68792 - python/trunk/Lib/collections.py

raymond.hettinger python-checkins at python.org
Tue Jan 20 03:24:38 CET 2009


Author: raymond.hettinger
Date: Tue Jan 20 03:24:38 2009
New Revision: 68792

Log:
Add Counter() to __all__.

Modified:
   python/trunk/Lib/collections.py

Modified: python/trunk/Lib/collections.py
==============================================================================
--- python/trunk/Lib/collections.py	(original)
+++ python/trunk/Lib/collections.py	Tue Jan 20 03:24:38 2009
@@ -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 *


More information about the Python-checkins mailing list