-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
REF: remove Block.concat_same_type #33486
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
Changes from 38 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
cb8f6c6
REF: reshape.concat operate on arrays, not SingleBlockManagers
jbrockmendel 5fe3348
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 2a2c9e7
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 2e774f2
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel e008f40
xfail more selectively
jbrockmendel a244f15
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 9d52e7e
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 3f0ee1b
Revert PandasArray.astype patch
jbrockmendel 2da47de
DOC: Fix examples in `pandas/core/strings.py` (#33328)
ShaharNaveh 9585a41
DOC: do not include type hints in signature in html docs (#33312)
jorisvandenbossche ed862c0
BUG: DataFrame fail to construct when data is list and columns is nes…
charlesdong1991 c57f6e7
API/CLN: simplify CategoricalBlock.replace (#33279)
jbrockmendel 2b322d2
REF: BlockManager.delete -> idelete (#33332)
jbrockmendel d4d7538
TST: Don't use 'is' on strings to avoid SyntaxWarning (#33322)
rebecca-palmer e3eb29c
CLN: remove fill_tuple kludge (#33310)
jbrockmendel fcfa7c4
TST: misplaced reduction/indexing tests (#33307)
jbrockmendel 7a468b0
BUG: Don't raise on value_counts for empty Int64 (#33339)
dsaxton 0a2b9cd
REGR: Fix bug when replacing categorical value with self (#33292)
dsaxton 5a38119
Pass method in __finalize__ (#33273)
TomAugspurger 4f1fb46
DOC: Added an example for each series.dt field accessor (#33259)
ShaharNaveh 8150c11
BUG: Timestamp+- ndarray[td64] (#33296)
jbrockmendel 9585ae4
BUG: 2D indexing on DTA/TDA/PA (#33290)
jbrockmendel c05d28b
REF: dispatch TDBlock.to_native_types to TDA._format_native_types (#3…
jbrockmendel 047e5d7
REF: put concatenate_block_managers in internals.concat (#33231)
jbrockmendel 0e382f2
TST: Add tests for duplicated and drop_duplicates (#32575)
mproszewska 717662b
Ods loses spaces 32207 (#33233)
detrout 9c1984c
PERF: masked ops for reductions (min/max) (#33261)
jorisvandenbossche efce8fc
REF: do concat on values, avoid blocks
jbrockmendel 362e86c
CLN: Clean nanops.get_corr_func (#33244)
dsaxton 3ad2110
[DOC]: Mention default behaviour of index_col in readcsv (#32977)
bharatr21 629d7c5
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 859327d
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 87c1006
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 3a84357
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 3ee8363
Remove Block.concat_same_type
jbrockmendel 9e6c7ed
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel fd7c72e
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 41d6da0
use concat_compat
jbrockmendel 5d567f0
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 2e070ca
combine cases
jbrockmendel 9b6d3ac
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 858658a
Merge branch 'master' of https://github.com/pandas-dev/pandas into no…
jbrockmendel 675a948
Dummy commit to force CI
jbrockmendel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm, doesn't concat_compat already handle this? why do you need cases here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I hope you're sitting down because this may come as a shock: because EAs dont support 2D.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i get that
but the cases are all the same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The last one is not, we dont pass
axis
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, but you still don't need line 70 at all
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, will update
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated+green