Skip to content

Commit e9ee79c

Browse files
author
Erlend E. Aasland
committed
Simplify What's New/NEWS wording
1 parent a99cd5c commit e9ee79c

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

Doc/whatsnew/3.11.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,9 @@ Porting to Python 3.11
211211
(:c:member:`PyTypeObject.tp_traverse`).
212212
(Contributed by Victor Stinner in :issue:`44263`.)
213213

214-
* The :const:`Py_TPFLAGS_HAVE_VECTORCALL` and
215-
:const:`Py_TPFLAGS_METHOD_DESCRIPTOR` flags can now be inherited if the
216-
target type has the :const:`Py_TPFLAGS_IMMUTABLETYPE` flag set. Previously,
217-
only :ref:`static types <static-types>` could inherit these flags.
214+
* Types with the :const:`Py_TPFLAGS_IMMUTABLETYPE` flag set can now implement
215+
the :pep:`590` vectorcall protocol. Previously, this was only available for
216+
:ref:`static types <static-types>`.
218217
(Contributed by Erlend E. Aasland in :issue:`43908`)
219218

220219
Deprecated
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
The :const:`Py_TPFLAGS_HAVE_VECTORCALL` and
2-
:const:`Py_TPFLAGS_METHOD_DESCRIPTOR` flags can now be inherited if the
3-
target type has the :const:`Py_TPFLAGS_IMMUTABLETYPE` flag set. Previously,
4-
only :ref:`static types <static-types>` could inherit these flags. Patch by
5-
Erlend E. Aasland.
1+
Types with the :const:`Py_TPFLAGS_IMMUTABLETYPE` flag set can now implement
2+
the :pep:`590` vectorcall protocol. Previously, this was only available for
3+
:ref:`static types <static-types>`. Patch by Erlend E. Aasland.

0 commit comments

Comments
 (0)