BUG: Various inconsistencies in DataFrame getitem/setitem behavior (fixes #2765) #2776
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fixes #2765
Note, to address
__getitem__
does not reindex boolean Series key but__setitem__
does ", I have changed the__getitem__
behavior rather than the__setitem__
behavior because it is more consistent with other indexing behavior and does not break any tests...just in case, I have inserted a warning about this happening (which only triggers when a reindex is actually required)Also, in addition to resolving the bugs, I have refactored the code to make
__getitem__
and__setitem__
code paths as symmetric as possible, in order to help prevent more issues in the future.Unit test coverage added, and performance tests show no impact