Skip to content

Commit 4cecdb7

Browse files
committed
Set default to True
1 parent 1f529e5 commit 4cecdb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/config_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ def is_terminal() -> bool:
429429

430430
cf.register_option(
431431
"nan_is_na",
432-
os.environ.get("PANDAS_NAN_IS_NA", "0") == "1",
432+
os.environ.get("PANDAS_NAN_IS_NA", "1") == "1",
433433
"Whether to treat NaN entries as interchangeable with pd.NA in "
434434
"numpy-nullable and pyarrow float dtypes. See discussion in "
435435
"https://github.com/pandas-dev/pandas/issues/32265",

0 commit comments

Comments
 (0)