API: ExtensionArray._concat_same_type doesn't define axis
#47514
Labels
API Design
ExtensionArray
Extending pandas with custom dtypes or arrays.
PDEP missing values
Issues that would be addressed by the Ice Cream Agreement from the Aug 2023 sprint
Reshaping
Concat, Merge/Join, Stack/Unstack, Explode
Mentioned in #46008
The signature for
ExtensionArray._concat_same_type
is defined asdef _concat_same_type(cls, sequence)
.Some internal extension arrays define the method with an axis argument e.g.
BaseMaskedArray._concat_same_type(cls, sequence, axis)
Some internal routines expect
_concat_same_type
to accept axis e.g_concat_datetime
(hit by checkingkind
on the dtype).I imagine either:
_concat_same_type(cls, sequence, axis)
(imagine not feasible)axis
to theExtensionArray._concat_same_type
signature.The text was updated successfully, but these errors were encountered: