We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
NaTType
NAType
pandas.api.typing
1 parent 0eb0b0e commit 25249e4Copy full SHA for 25249e4
pandas/api/typing/__init__.py
@@ -2,6 +2,9 @@
2
Public API classes that store intermediate results useful for type-hinting.
3
"""
4
5
+from pandas._libs import NaTType
6
+from pandas._libs.missing import NAType
7
+
8
from pandas.core.groupby import (
9
DataFrameGroupBy,
10
SeriesGroupBy,
@@ -36,6 +39,8 @@
36
39
"ExponentialMovingWindow",
37
40
"ExponentialMovingWindowGroupby",
38
41
"JsonReader",
42
+ "NaTType",
43
+ "NAType",
44
"PeriodIndexResamplerGroupby",
45
"Resampler",
46
"Rolling",
pandas/tests/api/test_api.py
@@ -259,6 +259,8 @@ class TestApi(Base):
259
260
261
262
263
264
265
266
0 commit comments