Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions doc/source/reference/missing_value.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ NA is the way to represent missing values for nullable dtypes (see below):

.. autosummary::
:toctree: api/
:template: autosummary/class_without_autosummary.rst

NA

NaT is the missing value for timedelta and datetime data (see below):

.. autosummary::
:toctree: api/
:template: autosummary/class_without_autosummary.rst

NaT
1 change: 1 addition & 0 deletions pandas/_libs/missing.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ class NAType(C_NAType):
>>> True | pd.NA
True
"""
__module__ = "pandas"

_instance = None

Expand Down
2 changes: 2 additions & 0 deletions pandas/_libs/tslibs/nattype.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@ class NaTType(_NaT):
1 NaT
"""

__module__ = "pandas"

def __new__(cls):
cdef _NaT base

Expand Down
Loading