Make merging easier by formattng comment blocks the same in Py3.1
diff --git a/Lib/collections.py b/Lib/collections.py
index 1d3fb40..a853076 100644
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -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