8000 CLN: Deprecate pandas.SparseArray for pandas.arrays.SparseArray by Dr-Irv · Pull Request #30656 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CLN: Deprecate pandas.SparseArray for pandas.arrays.SparseArray #30656

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Jan 5, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
merge with master
  • Loading branch information
Dr-Irv committed Jan 5, 2020
commit 5c524774e433d741843020a4b1b22f7d2ece95d0
2 changes: 1 addition & 1 deletion pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def _get_index_resolvers(self) -> Dict[str, ABCSeries]:
for axis_name in self._AXIS_ORDERS:
d.update(self._get_axis_resolvers(axis_name))

return {clean_column_name(k): v for k, v in d.items()}
return {clean_column_name(k): v for k, v in d.items() if not isinstance(k, int)}

def _get_cleaned_column_resolvers(self) -> Dict[str, ABCSeries]:
"""
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0