We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f7130 commit 37252efCopy full SHA for 37252ef
pandas/core/config_init.py
@@ -873,7 +873,7 @@ def register_converter_cb(key: str) -> None:
873
with cf.config_prefix("future"):
874
cf.register_option(
875
"infer_string",
876
- True,
+ True if os.environ.get("PANDAS_FUTURE_INFER_STRING", "0") == "1" else False,
877
"Whether to infer sequence of str objects as pyarrow string "
878
"dtype, which will be the default in pandas 3.0 "
879
"(at which point this option will be deprecated).",
0 commit comments