There was an error while loading. Please reload this page.
1 parent 477cc4f commit bd953a2Copy full SHA for bd953a2
pandas/core/config_init.py
@@ -903,7 +903,8 @@ def register_converter_cb(key: str) -> None:
903
cf.register_option(
904
"python_scalars",
905
False if os.environ.get("PANDAS_FUTURE_PYTHON_SCALARS", "0") == "0" else True,
906
- "Whether to return Python scalars instead of NumPy or PyArrow scalars",
+ "Whether to return Python scalars instead of NumPy or PyArrow scalars. "
907
+ "Currently experimental, setting to True is not recommended for end users.",
908
validator=is_one_of_factory([True, False]),
909
)
910
0 commit comments