[MINOR][PS][DOCS] Replace ellipsis with ASCII in pandas-on-Spark DataFrame docstrings#55562
Closed
zhengruifeng wants to merge 1 commit into
Closed
Conversation
HyukjinKwon
approved these changes
Apr 28, 2026
Contributor
Author
|
merged to master |
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.
What changes were proposed in this pull request?
Replaces the Unicode horizontal ellipsis character (U+2026,
…) with three ASCII dots (...) in fourignore_indexparameter docstrings inpython/pyspark/pandas/frame.py(lines 7991, 9649, 10252, 13354):Why are the changes needed?
Project convention is ASCII-only in code and comments. The same docstring already uses the ASCII form at
frame.py:7879and inpython/pyspark/pandas/series.py:3002, 3133, so this just makes the four outliers consistent with the rest of the file.Does this PR introduce any user-facing change?
No. Docstring-only change; rendering is essentially identical.
How was this patch tested?
No tests. Verified
grep -P "[^\x00-\x7F]"no longer reports the four sites and that the ASCII form already exists atframe.py:7879.Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude Code (model: claude-opus-4-7)