You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
"""
|
|
All of pandas' ExtensionArrays.
|
|
|
|
See :ref:`extending.extension-types` for more.
|
|
"""
|
|
from pandas.core.arrays import (
|
|
ArrowExtensionArray,
|
|
ArrowStringArray,
|
|
BooleanArray,
|
|
Categorical,
|
|
DatetimeArray,
|
|
FloatingArray,
|
|
IntegerArray,
|
|
IntervalArray,
|
|
NumpyExtensionArray,
|
|
PeriodArray,
|
|
SparseArray,
|
|
StringArray,
|
|
TimedeltaArray,
|
|
)
|
|
|
|
__all__ = [
|
|
"ArrowExtensionArray",
|
|
"ArrowStringArray",
|
|
"BooleanArray",
|
|
"Categorical",
|
|
"DatetimeArray",
|
|
"FloatingArray",
|
|
"IntegerArray",
|
|
"IntervalArray",
|
|
"NumpyExtensionArray",
|
|
"PeriodArray",
|
|
"SparseArray",
|
|
"StringArray",
|
|
"TimedeltaArray",
|
|
]
|
|
|
|
|
|
def __getattr__(name: str):
|
|
if name == "PandasArray":
|
|
# GH#53694
|
|
import warnings
|
|
|
|
from pandas.util._exceptions import find_stack_level
|
|
|
|
warnings.warn(
|
|
"PandasArray has been renamed NumpyExtensionArray. Use that "
|
|
"instead. This alias will be removed in a future version.",
|
|
FutureWarning,
|
|
stacklevel=find_stack_level(),
|
|
)
|
|
return NumpyExtensionArray
|
|
raise AttributeError(f"module 'pandas.arrays' has no attribute '{name}'")
|
|
|