From 9aa5a7c4b5b1d7c69025686b0c32a5de3e828214 Mon Sep 17 00:00:00 2001 From: Giftlin <31629119+Giftlin@users.noreply.github.com> Date: Fri, 15 Sep 2017 23:11:07 +0530 Subject: [PATCH 1/4] Spelling and grammar --- pandas/compat/chainmap_impl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/compat/chainmap_impl.py b/pandas/compat/chainmap_impl.py index 05a0d5faa4c2a..cab2c88cbabeb 100644 --- a/pandas/compat/chainmap_impl.py +++ b/pandas/compat/chainmap_impl.py @@ -34,10 +34,10 @@ def wrapper(self): class ChainMap(MutableMapping): """ A ChainMap groups multiple dicts (or other mappings) together - to create a single, updateable view. + to create a single, updatable 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 From 600754c6fcdc02d69e34e7ae3a56fa284fd87820 Mon Sep 17 00:00:00 2001 From: Giftlin <31629119+Giftlin@users.noreply.github.com> Date: Fri, 15 Sep 2017 23:13:39 +0530 Subject: [PATCH 2/4] Update chainmap_impl.py --- pandas/compat/chainmap_impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/compat/chainmap_impl.py b/pandas/compat/chainmap_impl.py index cab2c88cbabeb..29148929dafd7 100644 --- a/pandas/compat/chainmap_impl.py +++ b/pandas/compat/chainmap_impl.py @@ -37,7 +37,7 @@ class ChainMap(MutableMapping): to create a single, updatable view. The underlying mappings are stored in a list. That list is public and can - be 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 From 7002f8e5d6996c22a87b4f096dece7910667437f Mon Sep 17 00:00:00 2001 From: Giftlin <31629119+Giftlin@users.noreply.github.com> Date: Sat, 16 Sep 2017 02:38:16 +0530 Subject: [PATCH 3/4] Update chainmap_impl.py --- pandas/compat/chainmap_impl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/compat/chainmap_impl.py b/pandas/compat/chainmap_impl.py index 29148929dafd7..46c934ca82823 100644 --- a/pandas/compat/chainmap_impl.py +++ b/pandas/compat/chainmap_impl.py @@ -35,9 +35,9 @@ def wrapper(self): class ChainMap(MutableMapping): """ A ChainMap groups multiple dicts (or other mappings) together to create a single, updatable view. - +  The underlying mappings are stored in a list. That list is public and can - be accessed or updated using the *maps* attribute. There is no other state. + be accessed / 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 From 07320fbe529b9ded27dd6f2c1f02f5ce2c64fddf Mon Sep 17 00:00:00 2001 From: Giftlin <31629119+Giftlin@users.noreply.github.com> Date: Sat, 16 Sep 2017 02:39:14 +0530 Subject: [PATCH 4/4] Update chainmap_impl.py --- pandas/compat/chainmap_impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/compat/chainmap_impl.py b/pandas/compat/chainmap_impl.py index 46c934ca82823..c4aa8c8d6ab30 100644 --- a/pandas/compat/chainmap_impl.py +++ b/pandas/compat/chainmap_impl.py @@ -35,7 +35,7 @@ def wrapper(self): class ChainMap(MutableMapping): """ A ChainMap groups multiple dicts (or other mappings) together to create a single, updatable view. -  + The underlying mappings are stored in a list. That list is public and can be accessed / updated using the *maps* attribute. There is no other state.