-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
REF: Use PyUnicode_AsUTF8AndSize instead of get_c_string_buf_and_size #58227
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
REF: Use PyUnicode_AsUTF8AndSize instead of get_c_string_buf_and_size #58227
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.
minor comment otherwise lgtm when green
pandas/_libs/tslibs/util.pxd
Outdated
@@ -1,6 +1,9 @@ | |||
|
|||
from cpython.object cimport PyTypeObject | |||
from cpython.unicode cimport PyUnicode_AsUTF8AndSize | |||
from cpython.unicode cimport ( |
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 think these imports are superfluous 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.
Nice catch. Removed
Thanks @mroeschke |
cc @WillAyd