Skip to content

Commit 44323f2

Browse files
[NOT FOR MERGE] Test enabling Copy-on-Write by default
1 parent b7ab856 commit 44323f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/config_init.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ def use_inf_as_na_cb(key) -> None:
476476
"copy_on_write",
477477
# Get the default from an environment variable, if set, otherwise defaults
478478
# to False. This environment variable can be set for testing.
479-
os.environ.get("PANDAS_COPY_ON_WRITE", "0") == "1",
479+
True,
480480
copy_on_write_doc,
481481
validator=is_bool,
482482
)

0 commit comments

Comments
 (0)