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):
11
11
12
12
.. autosummary ::
13
13
:toctree: api/
14
- :template: autosummary/class_without_autosummary.rst
15
14
16
15
NA
17
16
18
17
NaT is the missing value for timedelta and datetime data (see below):
19
18
20
19
.. autosummary ::
21
20
:toctree: api/
22
- :template: autosummary/class_without_autosummary.rst
23
21
24
22
NaT
Original file line number Diff line number Diff line change @@ -371,6 +371,7 @@ class NAType(C_NAType):
371
371
>>> True | pd.NA
372
372
True
373
373
"""
374
+ __module__ = " pandas"
374
375
375
376
_instance = None
376
377
Original file line number Diff line number Diff line change @@ -341,6 +341,8 @@ class NaTType(_NaT):
341
341
1 NaT
342
342
"""
343
343
344
+ __module__ = " pandas"
345
+
344
346
def __new__ (cls ):
345
347
cdef _NaT base
346
348
You can’t perform that action at this time.
0 commit comments