From: Raymond Hettinger Date: Tue, 8 Sep 2015 04:36:29 +0000 (-0400) Subject: Fix whitespace in comment. X-Git-Tag: v3.5.1rc1~421^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ba03cf33fca8769c5f35d5b42b3f937dceb8a60;p=thirdparty%2FPython%2Fcpython.git Fix whitespace in comment. --- diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 09afc8a38ec8..339552ef088b 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -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 = {}