Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/pandas/api/types/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2Public toolkit API.
3"""
5from pandas._libs.lib import infer_dtype
7from pandas.core.dtypes.api import * # noqa: F403, F401
8from pandas.core.dtypes.concat import union_categoricals
9from pandas.core.dtypes.dtypes import (
10 CategoricalDtype,
11 DatetimeTZDtype,
12 IntervalDtype,
13 PeriodDtype,
14)
16__all__ = [
17 "infer_dtype",
18 "union_categoricals",
19 "CategoricalDtype",
20 "DatetimeTZDtype",
21 "IntervalDtype",
22 "PeriodDtype",
23]