We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e0976c + ebc59c4 commit aa0b970Copy full SHA for aa0b970
pandas/tslib.pyx
@@ -4240,6 +4240,8 @@ cdef inline int m8_weekday(int64_t val):
4240
cdef int64_t DAY_NS = 86400000000000LL
4241
4242
4243
+@cython.wraparound(False)
4244
+@cython.boundscheck(False)
4245
def date_normalize(ndarray[int64_t] stamps, tz=None):
4246
cdef:
4247
Py_ssize_t i, n = len(stamps)
@@ -4262,6 +4264,8 @@ def date_normalize(ndarray[int64_t] stamps, tz=None):
4262
4264
4263
4265
return result
4266
4267
4268
4269
cdef _normalize_local(ndarray[int64_t] stamps, object tz):
4270
4271
Py_ssize_t n = len(stamps)
0 commit comments