-
Notifications
You must be signed in to change notification settings - Fork 24.7k
[Doc] Fix rendering of the unicode characters #134597
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
Conversation
#124771 introduced unicode escape sequences inside raw strings, which were not renderred correctly. Fix it by relying on [string literal concatenation](https://docs.python.org/3/reference/lexical_analysis.html#string-literal-concatenation) to join raw and regular strings together during lexical analysis stage Fixes #134422
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/134597
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit 7c0ea6a with merge base 0a3c064 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@pytorchbot merge -f "Lint and docs are looking good" |
Merge startedYour change will be merged immediately since you used the force (-f) flag, bypassing any CI checks (ETA: 1-5 minutes). Please use Learn more about merging in the wiki. Questions? Feedback? Please reach out to the PyTorch DevX Team |
@pytorchbot cherry-pick --onto release/2.4 -c doc |
❌ 🤖 pytorchbot command failed:
Try |
@pytorchbot cherry-pick --onto release/2.4 -c docs |
#124771 introduced unicode escape sequences inside raw strings, which were not rendered correctly. Also fix typo in `\uue0 ` escape sequence (should have been `\u00e0`) Fix it by relying on [string literal concatenation](https://docs.python.org/3/reference/lexical_analysis.html#string-literal-concatenation) to join raw and regular strings together during lexical analysis stage Fixes #134422 Pull Request resolved: #134597 Approved by: https://github.com/aorenste, https://github.com/Skylion007 (cherry picked from commit 534f43d)
Cherry picking #134597The cherry pick PR is at #134695 The following tracker issues are updated: Details for Dev Infra teamRaised by workflow job |
* [Doc] Fix rendering of the unicode characters (#134597) #124771 introduced unicode escape sequences inside raw strings, which were not rendered correctly. Also fix typo in `\uue0 ` escape sequence (should have been `\u00e0`) Fix it by relying on [string literal concatenation](https://docs.python.org/3/reference/lexical_analysis.html#string-literal-concatenation) to join raw and regular strings together during lexical analysis stage Fixes #134422 Pull Request resolved: #134597 Approved by: https://github.com/aorenste, https://github.com/Skylion007 (cherry picked from commit 534f43d) * Fix lint --------- Co-authored-by: Nikita Shulga <nshulga@meta.com>
pytorch#124771 introduced unicode escape sequences inside raw strings, which were not rendered correctly. Also fix typo in `\uue0 ` escape sequence (should have been `\u00e0`) Fix it by relying on [string literal concatenation](https://docs.python.org/3/reference/lexical_analysis.html#string-literal-concatenation) to join raw and regular strings together during lexical analysis stage Fixes pytorch#134422 Pull Request resolved: pytorch#134597 Approved by: https://github.com/aorenste, https://github.com/Skylion007
#124771 introduced unicode escape sequences inside raw strings, which were not rendered correctly. Also fix typo in
\uue0
escape sequence (should have been\u00e0
)Fix it by relying on string literal concatenation to join raw and regular strings together during lexical analysis stage
Fixes #134422
cc @albanD