projektAI/venv/Lib/site-packages/pandas/core/array_algos/__init__.py

10 lines
408 B
Python
Raw Permalink Normal View History

2021-06-06 22:13:05 +02:00
"""
core.array_algos is for algorithms that operate on ndarray and ExtensionArray.
These should:
- Assume that any Index, Series, or DataFrame objects have already been unwrapped.
- Assume that any list arguments have already been cast to ndarray/EA.
- Not depend on Index, Series, or DataFrame, nor import any of these.
- May dispatch to ExtensionArray methods, but should not import from core.arrays.
"""