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 @@ -393,6 +393,7 @@ class NAType(C_NAType):
393393 >>> True | pd.NA
394394 True
395395 """
396+ __module__ = " pandas"
396397
397398 _instance = None
398399
Original file line number Diff line number Diff line change @@ -372,6 +372,8 @@ class NaTType(_NaT):
372372 1 NaT
373373 """
374374
375+ __module__ = " pandas"
376+
375377 def __new__ (cls ):
376378 cdef _NaT base
377379
You can’t perform that action at this time.
0 commit comments