-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-574: Python: Add support for nested Python lists in Pandas conversion #364
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
Conversation
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'm not sure if we should maybe acquire the GIL always in this function instead of only for pylists.
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.
+1 Note were calling PyList_Check just before we acquire the GIL
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.
Done.
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.
Do we want to allow implicit conversion (like int32 to int64)?
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.
We may allow this in future but currently we are missing a matching converter or alternatively, a convenient cast function for other integer types.
wesm
left a comment
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.
+1. Shoot, I wish I had merged this before doing #375. I will merge this then rebase
…ersion Author: Uwe L. Korn <uwelk@xhochy.com> Closes apache#364 from xhochy/ARROW-574 and squashes the following commits: 3ef02ae [Uwe L. Korn] ARROW-574: Python: Add support for nested Python lists in Pandas conversion
…-1154 I verified locally that this works on Linux with the current iteration of apache#785, will update the commit in ThirdpartyToolchain.cmake after that is merged to get a passing build Author: Wes McKinney <wes.mckinney@twosigma.com> Closes apache#364 from wesm/PARQUET-1045 and squashes the following commits: fede8d9 [Wes McKinney] Update Arrow version to include ARROW-1159 b44b4ab [Wes McKinney] Fix benchmark. Only build Zlib on Windows when building Thrift 83d2289 [Wes McKinney] Update Arrow version 8914c16 [Wes McKinney] Remove code that was moved to Apache Arrow, refactoring Change-Id: Ibee94d0dd9d0b6844bdbb3c57da5126c97760108
No description provided.