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

raymond.hettinger python-checkins at python.org
Tue Jan 20 04:36:37 CET 2009


Author: raymond.hettinger
Date: Tue Jan 20 04:36:36 2009
New Revision: 68793

Log:
Make merging easier by formattng comment blocks the same in Py3.1

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 04:36:36 2009
@@ -12,8 +12,9 @@
 import heapq as _heapq
 from itertools import repeat as _repeat, chain as _chain, starmap as _starmap, ifilter as _ifilter
 
-########################################################################
-###  namedtuple  #######################################################
+################################################################################
+### namedtuple
+################################################################################
 
 def namedtuple(typename, field_names, verbose=False):
     """Returns a new subclass of tuple with named fields.
@@ -114,7 +115,8 @@
 
 
 ########################################################################
-###  Counter  ##########################################################
+###  Counter
+########################################################################
 
 class Counter(dict):
     '''Dict subclass for counting hashable items.  Sometimes called a bag


More information about the Python-checkins mailing list