29 lines
687 B
Python
29 lines
687 B
Python
|
"""
|
||
|
pandas._config is considered explicitly upstream of everything else in pandas,
|
||
|
should have no intra-pandas dependencies.
|
||
|
|
||
|
importing `dates` and `display` ensures that keys needed by _libs
|
||
|
are initialized.
|
||
|
"""
|
||
|
__all__ = [
|
||
|
"config",
|
||
|
"detect_console_encoding",
|
||
|
"get_option",
|
||
|
"set_option",
|
||
|
"reset_option",
|
||
|
"describe_option",
|
||
|
"option_context",
|
||
|
"options",
|
||
|
]
|
||
|
from pandas._config import config
|
||
|
from pandas._config import dates # pyright: ignore # noqa:F401
|
||
|
from pandas._config.config import (
|
||
|
describe_option,
|
||
|
get_option,
|
||
|
option_context,
|
||
|
options,
|
||
|
reset_option,
|
||
|
set_option,
|
||
|
)
|
||
|
from pandas._config.display import detect_console_encoding
|