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.
1 parent 613e365 commit 9bf564bCopy full SHA for 9bf564b
pandas/_libs/tslibs/timedeltas.pyx
@@ -252,7 +252,7 @@ cdef object ensure_td64ns(object ts):
252
try:
253
td64_value = get_timedelta64_value(ts) * mult
254
except OverflowError as ex:
255
- msg = f"{ts} outside allowed range [{NPY_NAT + 1}ns, {INT64_MAX}ns]"
+ msg = f"{str(ts)} outside allowed range [{NPY_NAT + 1}ns, {INT64_MAX}ns]"
256
raise OutOfBoundsTimedelta(msg) from ex
257
258
return np.timedelta64(td64_value, "ns")
0 commit comments