Make copy-on-write the default for pandas3 - #21801
Merged
Merged
Conversation
Contributor
Author
|
/ok to test 1c4481a |
mroeschke
approved these changes
Mar 16, 2026
mroeschke
left a comment
Contributor
There was a problem hiding this comment.
Nice! In a follow up (not urgent for pandas 3 compat), I bet there are more places where we can call copy(deep=False) when coping column objects or in public APIs
3 tasks
galipremsagar
pushed a commit
that referenced
this pull request
Mar 23, 2026
## Description <!-- Provide a standalone description of changes in this PR. --> <!-- Reference any issues closed by this PR with "closes #1234". --> <!-- Note: The pull request title will be included in the CHANGELOG. --> I missed this in #21801. ## Checklist - [x] I am familiar with the [Contributing Guidelines](https://github.com/rapidsai/cudf/blob/HEAD/CONTRIBUTING.md). - [x] New or existing tests cover these changes. - [x] The documentation is up to date with these changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR removes all configurability around copy-on-write and turns it on unconditionally. I didn't remove some of the behavioral tests for CoW so we still have some level of testing of CoW correctness.
Checklist