Skip to content

Commit 5b9b4a8

Browse files
authored
COMPAT: 32-bit compat for tz-conversions (#18778)
xref #18777
1 parent 76b35c6 commit 5b9b4a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/_libs/tslibs/conversion.pyx

+2-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,8 @@ cdef inline void _localize_tso(_TSObject obj, object tz):
469469
"""
470470
cdef:
471471
ndarray[int64_t] trans, deltas
472-
Py_ssize_t delta, posn
472+
int64_t delta
473+
Py_ssize_t posn
473474
datetime dt
474475

475476
assert obj.tzinfo is None

0 commit comments

Comments
 (0)