Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Update warning in Index.values docstring to clarify index modification which causes segmentation fault #61069

Merged
merged 5 commits into from
Mar 11, 2025

Conversation

Manju080
Copy link
Contributor

@Manju080 Manju080 commented Mar 6, 2025

Index Modification issues (#60954)

This PR updates the docstring for Index.values to clearly warn users that modifying it directly is not supported and may lead to memory corruption or segmentation faults. It also recommends safe alternatives, such as using Index.array or Index.to_numpy(copy=True).

As per @mroeschke s note, in Pandas 3.0 this operation will raise an error under Copy-on-Write mode, making it clear that modifying is disallowed.

closes #60954

@@ -4912,6 +4912,10 @@ def values(self) -> ArrayLike:
:meth:`Index.to_numpy`, depending on whether you need
a reference to the underlying data or a NumPy array.

Modifying 'Index.values' directly is not supported and can lead to memory
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead, could you add a .. versionchanged:: 3.0.0 tag mentioning that the result is read-only?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mroeschke thank you for the updates.

please confirm if the below statement should be replaced with the existing one or to modify the first line.

.. versionchanged:: 3.0.0
The result is now read-only, preventing memory corruption or segmentation
faults that could occur when attempting to modify it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably just

.. versionchanged:: 3.0.0
    The returned array is read-only.

@Manju080 Manju080 requested a review from mroeschke March 7, 2025 18:37
@mroeschke mroeschke added the Docs label Mar 7, 2025
@mroeschke mroeschke added this to the 3.0 milestone Mar 7, 2025
@Manju080
Copy link
Contributor Author

@mroeschke Thanks, that was helpful. I made the changes and all the checks are successful.
Let me if any there is any changes required.

@mroeschke mroeschke merged commit 40a8180 into pandas-dev:main Mar 11, 2025
42 checks passed
@mroeschke
Copy link
Member

Thanks @Manju080

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BUG: Segmentation Fault when changing a column name in a DataFrame
2 participants