Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pandas/core/array_algos/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

0 statements  

1""" 

2core.array_algos is for algorithms that operate on ndarray and ExtensionArray. 

3These should: 

4 

5- Assume that any Index, Series, or DataFrame objects have already been unwrapped. 

6- Assume that any list arguments have already been cast to ndarray/EA. 

7- Not depend on Index, Series, or DataFrame, nor import any of these. 

8- May dispatch to ExtensionArray methods, but should not import from core.arrays. 

9"""