We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81d52f commit 2289903Copy full SHA for 2289903
pandas/api/extensions/__init__.py
@@ -2,7 +2,10 @@
2
Public API for extending pandas objects.
3
"""
4
5
-from pandas._libs.lib import no_default
+from pandas._libs.lib import (
6
+ NoDefault,
7
+ no_default,
8
+)
9
10
from pandas.core.dtypes.base import (
11
ExtensionDtype,
@@ -24,6 +27,7 @@
24
27
"ExtensionArray",
25
28
"ExtensionDtype",
26
29
"ExtensionScalarOpsMixin",
30
+ "NoDefault",
31
"no_default",
32
"register_dataframe_accessor",
33
"register_extension_dtype",
pandas/tests/api/test_api.py
@@ -328,6 +328,7 @@ class TestApi(Base):
328
]
329
allowed_api_extensions = [
330
331
332
333
334
0 commit comments