[Python-checkins] cpython (3.4): Fix whitespace in comment.

raymond.hettinger python-checkins at python.org
Tue Sep 8 06:37:26 CEST 2015


https://hg.python.org/cpython/rev/fc71979b80a5
changeset:   97769:fc71979b80a5
branch:      3.4
parent:      97766:7f4102a9818b
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Sep 08 00:36:29 2015 -0400
summary:
  Fix whitespace in comment.

files:
  Lib/collections/__init__.py |  5 ++---
  1 files changed, 2 insertions(+), 3 deletions(-)


diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -836,9 +836,8 @@
     __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 = {}

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list