Python 3.12.0a3

This commit is contained in:
Thomas Wouters 2022-12-06 19:31:10 +01:00
parent fd38a2f0ec
commit b6bd7ffcbc
84 changed files with 847 additions and 193 deletions

View file

@ -1,5 +0,0 @@
The ``structmember.h`` header is deprecated. Its non-deprecated contents are
now available just by including ``Python.h``, with a ``Py_`` prefix added if
it was missing. (Deprecated contents are :c:macro:`T_OBJECT`,
:c:macro:`T_NONE`, and no-op flags.) Patch by Petr Viktorin, based on
earlier work by Alexander Belopolsky and Matthias Braun.

View file

@ -1,2 +0,0 @@
Fix :c:func:`PyUnicode_DecodeUTF8Stateful` for ASCII-only data:
``*consumed`` was not set.

View file

@ -1,3 +0,0 @@
``PyBUF_*`` constants were marked as part of Limited API of Python 3.11+.
These were available in 3.11.0 with :c:macro:`Py_LIMITED_API` defined for
3.11, and are necessary to use the buffer API.