Skip to content

Commit

Permalink
[NOT FOR MERGE] Test enabling Copy-on-Write by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisvandenbossche committed Oct 27, 2023
1 parent b7ab856 commit 44323f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/config_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def use_inf_as_na_cb(key) -> None:
"copy_on_write",
# Get the default from an environment variable, if set, otherwise defaults
# to False. This environment variable can be set for testing.
os.environ.get("PANDAS_COPY_ON_WRITE", "0") == "1",
True,
copy_on_write_doc,
validator=is_bool,
)
Expand Down

0 comments on commit 44323f2

Please sign in to comment.