diff options
author | Raymond Hettinger <python@rcn.com> | 2015-09-08 04:36:29 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-09-08 04:36:29 (GMT) |
commit | 8ba03cf33fca8769c5f35d5b42b3f937dceb8a60 (patch) | |
tree | 2e2c85edbf42a796c5383da93b97e8057460bd37 | |
parent | 1a690fb65af0661d93a65e069b9e8e0a1fa12087 (diff) | |
download | cpython-8ba03cf33fca8769c5f35d5b42b3f937dceb8a60.zip cpython-8ba03cf33fca8769c5f35d5b42b3f937dceb8a60.tar.gz cpython-8ba03cf33fca8769c5f35d5b42b3f937dceb8a60.tar.bz2 |
Fix whitespace in comment.
-rw-r--r-- | Lib/collections/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 09afc8a..339552e 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 = {} |