]> granicus.if.org Git - python/commitdiff
Fix whitespace in comment.
authorRaymond Hettinger <python@rcn.com>
Tue, 8 Sep 2015 04:36:29 +0000 (00:36 -0400)
committerRaymond Hettinger <python@rcn.com>
Tue, 8 Sep 2015 04:36:29 +0000 (00:36 -0400)
Lib/collections/__init__.py

index 09afc8a38ec8f23fdb66b15d7662a165eb03efaf..339552ef088b26b43d81ea0358e3a37701424b1a 100644 (file)
@@ -836,9 +836,8 @@ class ChainMap(MutableMapping):
     __copy__ = copy
 
     def new_child(self, m=None):                # like Django's Context.push()
-        '''
-        New ChainMap with a new map followed by all previous maps. If no
-        map is provided, an empty dict is used.
+        '''New ChainMap with a new map followed by all previous maps.
+        If no map is provided, an empty dict is used.
         '''
         if m is None:
             m = {}