Skip to content

Commit bd953a2

Browse files
committed
Indicate config is experimental
1 parent 477cc4f commit bd953a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/config_init.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,8 @@ def register_converter_cb(key: str) -> None:
903903
cf.register_option(
904904
"python_scalars",
905905
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",
906+
"Whether to return Python scalars instead of NumPy or PyArrow scalars. "
907+
"Currently experimental, setting to True is not recommended for end users.",
907908
validator=is_one_of_factory([True, False]),
908909
)
909910

0 commit comments

Comments
 (0)