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 @@ -393,6 +393,7 @@ class NAType(C_NAType):
393
393
>>> True | pd.NA
394
394
True
395
395
"""
396
+ __module__ = " pandas"
396
397
397
398
_instance = None
398
399
Original file line number Diff line number Diff line change @@ -372,6 +372,8 @@ class NaTType(_NaT):
372
372
1 NaT
373
373
"""
374
374
375
+ __module__ = " pandas"
376
+
375
377
def __new__ (cls ):
376
378
cdef _NaT base
377
379
You can’t perform that action at this time.
0 commit comments