zhengruifeng opened a new pull request, #55559: URL: https://github.com/apache/spark/pull/55559
### What changes were proposed in this pull request? Replaces left/right curly double quotes (U+201C/U+201D) with ASCII double quotes (U+0022) in four identical comments in pandas-on-Spark index modules: - `python/pyspark/pandas/indexes/datetimes.py` (2 sites) - `python/pyspark/pandas/indexes/multi.py` - `python/pyspark/pandas/indexes/base.py` Each comment reads `# so we enforce "distributed" default index type`. ### Why are the changes needed? The project convention is ASCII-only in code and comments; typographic quotes are a common slip and were flagged by `grep -P "[^\x00-\x7F]"`. ### Does this PR introduce _any_ user-facing change? No. Comment-only change. ### How was this patch tested? No tests. The change is comment-only and produces an empty AST diff. Verified `grep -P "[^\x00-\x7F]"` no longer reports the four sites. ### 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]
