Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/pandas/_config/__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"""
2pandas._config is considered explicitly upstream of everything else in pandas,
3should have no intra-pandas dependencies.
5importing `dates` and `display` ensures that keys needed by _libs
6are initialized.
7"""
8__all__ = [
9 "config",
10 "detect_console_encoding",
11 "get_option",
12 "set_option",
13 "reset_option",
14 "describe_option",
15 "option_context",
16 "options",
17]
18from pandas._config import config
19from pandas._config import dates # noqa:F401
20from pandas._config.config import (
21 describe_option,
22 get_option,
23 option_context,
24 options,
25 reset_option,
26 set_option,
27)
28from pandas._config.display import detect_console_encoding