-
Notifications
You must be signed in to change notification settings - Fork 31k
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
gh-95913: Edit Faster CPython section in 3.11 WhatsNew #98429
Merged
Fidget-Spinner
merged 8 commits into
python:main
from
CAM-Gerlach:whatsnew-faster-cpython
Mar 7, 2023
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a7493eb
Add cross references and fix syntax for main sections
CAM-Gerlach 5e67f8b
Add cross references and refine reST syntax in specialization table
CAM-Gerlach 2fda457
Convert FAQ from manually-formatted to section headings + ref targets
CAM-Gerlach 3d614ee
Improve readibility/reduce choppiness & a few other textual tweaks
CAM-Gerlach 6fe84e8
Apply textual clarifications from Ken Jin
CAM-Gerlach 076e331
Add Brandt's gh-91404 regex speedup from Optimizations to Misc section
CAM-Gerlach 2b24d4e
Add zero-cost exceptions moved from Optimization section
CAM-Gerlach 0e898cd
LOAD_GLOBAL without call
Fidget-Spinner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
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.
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.
Just for my own understanding, these are so that the hyperlink generates nicer links right?
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.
These are ref target labels, which allow directly and stably linking and cross-referencing of this FAQ answer using the
:ref:
role (:ref:`faster-cypthon-jit`
), both within this document (as with implicit hyperlinks, but much more robustly), but also from anywhere else within the CPython documentation, and also from any other docs that links to this one via Intersphinx (as many do). This reference will continue to work even if this section is later moved, renamed, combined with another section, split into multiple, etc.Furthermore, it means external links to this fragment id (i.e. using
#faster-cpython-jit
) will continue to work if the section is renamed on the same page, and it also allows automatically setting up external-link redirects to different pages via some tooling I'm working on. Finally, if it were to break for whatever reason, it will generate an optional warning rather than simply breaking silently.