-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: de-duplicate paths in tslibs #34400
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
@@ -964,23 +964,8 @@ def dt64arr_to_periodarr(const int64_t[:] dtarr, int freq, tz=None): | |||
""" | |||
cdef: | |||
int64_t[:] out | |||
Py_ssize_t i, l |
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 even need this routine any longer? (e.g. just call localize_dt64arr_to_period in the caller)
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
@@ -28,27 +28,19 @@ cdef: | |||
|
|||
# ---------------------------------------------------------------------- | |||
|
|||
cpdef resolution(const int64_t[:] stamps, tz=None): | |||
def resolution(const int64_t[:] stamps, tz=None): |
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.
not called in cython anylonger?
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.
not sure if it ever was
No description provided.