diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 04:13:35 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-05-29 04:13:35 (GMT) |
commit | 8d56c026a5dd724318be005465366d5140fa6fe7 (patch) | |
tree | 9e1efdce69034e7c5088bcf176a7bcf5144c560f /Lib/collections/__init__.py | |
parent | e8a175eaa067d0f434933d2f003260a6d739c2d1 (diff) | |
download | cpython-8d56c026a5dd724318be005465366d5140fa6fe7.zip cpython-8d56c026a5dd724318be005465366d5140fa6fe7.tar.gz cpython-8d56c026a5dd724318be005465366d5140fa6fe7.tar.bz2 |
Issue #27125: Fix various errors like “will [be] inherited”
Diffstat (limited to 'Lib/collections/__init__.py')
-rw-r--r-- | Lib/collections/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 05eb170..ebe8ee7 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -850,7 +850,8 @@ class ChainMap(MutableMapping): to create a single, updateable view. The underlying mappings are stored in a list. That list is public and can - accessed or updated using the *maps* attribute. There is no other state. + be accessed or updated using the *maps* attribute. There is no other + state. Lookups search the underlying mappings successively until a key is found. In contrast, writes, updates, and deletions only operate on the first |