-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
Conversation
pandas/core/indexes/base.py
Outdated
@@ -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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
…cation issues (pandas-dev#60954) with changes
Co-authored-by: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com>
@mroeschke Thanks, that was helpful. I made the changes and all the checks are successful. |
Thanks @Manju080 |
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
orIndex.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