Skip to content
Open
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
1 change: 1 addition & 0 deletions pandas/_libs/missing.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,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