-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
What's New in Python 3.12: move C API at the end #92555
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
vstinner
commented
May 9, 2022
- Separate Build and C API changes in two sections
- Add sub-sections to the C API changes
* Separate Build and C API changes in two sections * Add sub-sections to the C API changes
@pablogsal: How can I change the template used to create a new "What's New in Python 3.X" document when a new Python version is created? PEP 101 says "Add a new whatsnew/3.x.rst file": ok, but what's the template? https://peps.python.org/pep-0101/ |
Removed | ||
------- | ||
|
||
* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been removed. |
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.
It's probably enough to just list the names, since they are now under the "Removed" section.
* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop` have been removed. | |
* :c:func:`PyFrame_BlockSetup` and :c:func:`PyFrame_BlockPop`. |
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.
I prefer to leave it as it is. See What's New in Python 3.11: https://docs.python.org/dev/whatsnew/3.11.html#id8
Also, this PR is only about moving items. Not rephrasing them.
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.
@ezio-melotti: Feel free to propose a follow-up PR if you want to rephase it ;-) Personally, I like to write sentences which can be read aloud.
The template is within the release scripts. Here: |
Oh thanks, I wrote a PR to update the template: python/release-tools#13 |