You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class NaTType(_NaT):
"""(N)ot-(A)-(T)ime, the time equivalent of NaN"""
def __new__(cls):
cdef _NaT base
base = _NaT.__new__(cls, 1, 1, 1)
base._day = -1
base._month = -1
base.value = NPY_NAT
The text was updated successfully, but these errors were encountered:
NaTType.__new__
defines_day
and_month
attributes and sets them to -1. What are these used for?https://github.com/pandas-dev/pandas/blob/master/pandas/_libs/tslib.pyx#L833
The text was updated successfully, but these errors were encountered: