zhengruifeng opened a new pull request, #55562:
URL: https://github.com/apache/spark/pull/55562

   ### What changes were proposed in this pull request?
   
   Replaces the Unicode horizontal ellipsis character (U+2026, `…`) with three 
ASCII dots (`...`) in four `ignore_index` parameter docstrings in 
`python/pyspark/pandas/frame.py` (lines 7991, 9649, 10252, 13354):
   
   ```
       If True, the resulting axis/index will be labeled 0, 1, …, n - 1.
     → If True, the resulting axis/index will be labeled 0, 1, ..., n - 1.
   ```
   
   ### 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:7879` and in 
`python/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 at `frame.py:7879`.
   
   ### Was this patch authored or co-authored using generative AI tooling?
   
   Generated-by: Claude Code (model: claude-opus-4-7)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to