/usr/local/lib64/python3.6/site-packages/pandas/tests/arrays/boolean
NameSizeModeActions
__pycache__/-0755rm
test_arithmetic.py27040644editdlrm
test_astype.py16030644editdlrm
test_comparison.py31030644editdlrm
test_construction.py130250644editdlrm
test_function.py34410644editdlrm
test_indexing.py3610644editdlrm
test_logical.py85010644editdlrm
test_ops.py7450644editdlrm
test_reduction.py20170644editdlrm
test_repr.py4370644editdlrm
__init__.py00644editdlrm
Edit: /usr/local/lib64/python3.6/site-packages/pandas/tests/arrays/boolean/test_repr.py (437B)
import pandas as pd def test_repr(): df = pd.DataFrame({"A": pd.array([True, False, None], dtype="boolean")}) expected = " A\n0 True\n1 False\n2 " assert repr(df) == expected expected = "0 True\n1 False\n2 \nName: A, dtype: boolean" assert repr(df.A) == expected expected = "\n[True, False, ]\nLength: 3, dtype: boolean" assert repr(df.A.array) == expected