8000 Switch dataframe constructor to use dispatch by saulshanabrook · Pull Request #32844 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Switch dataframe constructor to use dispatch #32844

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

Closed
wants to merge 14 commits into from
Prev Previous commit
Next Next commit
flake8
  • Loading branch information
saulshanabrook committed Mar 19, 2020
commit 4dfb4b73c3e5602a6a69a570c913a10c6a40de36
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -8503,7 +8503,7 @@ def _create_block_manager_dataframe(data: DataFrame, *args, **kwargs):


@create_block_manager.register
def _create_block_manager_dataframe(
def _create_block_manager_blockmanager(
data: BlockManager, df, index, columns, dtype, copy
):
mgr = df._init_mgr(
Expand Down
0