File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,12 @@ NA is the way to represent missing values for nullable dtypes (see below):
1111
1212.. autosummary ::
1313 :toctree: api/
14- :template: autosummary/class_without_autosummary.rst
1514
1615 NA
1716
1817NaT is the missing value for timedelta and datetime data (see below):
1918
2019.. autosummary ::
2120 :toctree: api/
22- :template: autosummary/class_without_autosummary.rst
2321
2422 NaT
Original file line number Diff line number Diff line change @@ -371,6 +371,7 @@ class NAType(C_NAType):
371371 >>> True | pd.NA
372372 True
373373 """
374+ __module__ = " pandas"
374375
375376 _instance = None
376377
Original file line number Diff line number Diff line change @@ -341,6 +341,8 @@ class NaTType(_NaT):
341341 1 NaT
342342 """
343343
344+ __module__ = " pandas"
345+
344346 def __new__ (cls ):
345347 cdef _NaT base
346348
You can’t perform that action at this time.
0 commit comments