-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* inital implementation, no documentation * revert * non list test * docstring wip * add list accessor to series.rst * whatsnew * fix * fix typehint * private * fix docstring * fail on iter * list_slice only impl in pyarrow 11 * fix docstring? * fix * fix test * fix validation msg * fix * fix * remove private * maybe fix * one more remove --------- Co-authored-by: Rohan Jain <[email protected]>
- Loading branch information
1 parent
8e0411f
commit 2c1d4bb
Showing
7 changed files
with
389 additions
and
31 deletions.
There are no files selected for viewing
This file contains 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
from pandas.core.arrays.arrow.accessors import StructAccessor | ||
from pandas.core.arrays.arrow.accessors import ( | ||
ListAccessor, | ||
StructAccessor, | ||
) | ||
from pandas.core.arrays.arrow.array import ArrowExtensionArray | ||
|
||
__all__ = ["ArrowExtensionArray", "StructAccessor"] | ||
__all__ = ["ArrowExtensionArray", "StructAccessor", "ListAccessor"] |
This file contains 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 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
Oops, something went wrong.