What's New in Python 3.12: move C API at the end#92555
What's New in Python 3.12: move C API at the end#92555vstinner merged 1 commit intopython:mainfrom vstinner:whatsnew312
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.
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.
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.
@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 |