2021-11-30 13:12:11 -05:00
|
|
|
PEP: 674
|
2022-02-07 10:09:57 -05:00
|
|
|
Title: Disallow using macros as l-values
|
2021-11-30 13:12:11 -05:00
|
|
|
Author: Victor Stinner <vstinner@python.org>
|
2022-12-13 10:35:25 -05:00
|
|
|
Status: Deferred
|
2021-11-30 13:12:11 -05:00
|
|
|
Type: Standards Track
|
|
|
|
Content-Type: text/x-rst
|
2022-01-18 02:53:30 -05:00
|
|
|
Created: 30-Nov-2021
|
2022-11-22 19:33:29 -05:00
|
|
|
Python-Version: 3.12
|
2022-08-24 18:39:36 -04:00
|
|
|
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
Abstract
|
|
|
|
========
|
|
|
|
|
2022-02-07 10:09:57 -05:00
|
|
|
Disallow using macros as l-values. For example,
|
|
|
|
``Py_TYPE(obj) = new_type`` now fails with a compiler error.
|
2021-12-01 11:05:22 -05:00
|
|
|
|
|
|
|
In practice, the majority of affected projects only have to make two
|
|
|
|
changes:
|
2021-11-30 13:12:11 -05:00
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
* Replace ``Py_TYPE(obj) = new_type``
|
|
|
|
with ``Py_SET_TYPE(obj, new_type)``.
|
|
|
|
* Replace ``Py_SIZE(obj) = new_size``
|
|
|
|
with ``Py_SET_SIZE(obj, new_size)``.
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
|
2022-12-13 10:35:25 -05:00
|
|
|
PEP Deferral
|
|
|
|
============
|
|
|
|
|
|
|
|
See `SC reply to PEP 674 -- Disallow using macros as l-values
|
|
|
|
<https://mail.python.org/archives/list/python-dev@python.org/message/CV6KWDRHV5WP6TIDK3Z46PW7HNSHYOWG/>`_
|
|
|
|
(February 2022).
|
|
|
|
|
|
|
|
|
2021-11-30 13:12:11 -05:00
|
|
|
Rationale
|
|
|
|
=========
|
|
|
|
|
2022-01-26 17:10:52 -05:00
|
|
|
Using a macro as a an l-value
|
|
|
|
-----------------------------
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
In the Python C API, some functions are implemented as macro because
|
|
|
|
writing a macro is simpler than writing a regular function. If a macro
|
2022-01-04 00:01:23 -05:00
|
|
|
exposes directly a structure member, it is technically possible to use
|
2021-11-30 13:12:11 -05:00
|
|
|
this macro to not only get the structure member but also set it.
|
|
|
|
|
|
|
|
Example with the Python 3.10 ``Py_TYPE()`` macro::
|
|
|
|
|
|
|
|
#define Py_TYPE(ob) (((PyObject *)(ob))->ob_type)
|
|
|
|
|
|
|
|
This macro can be used as a **r-value** to **get** an object type::
|
|
|
|
|
|
|
|
type = Py_TYPE(object);
|
|
|
|
|
2022-01-26 17:10:52 -05:00
|
|
|
It can also be used as an **l-value** to **set** an object type::
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
Py_TYPE(object) = new_type;
|
|
|
|
|
|
|
|
It is also possible to set an object reference count and an object size
|
|
|
|
using ``Py_REFCNT()`` and ``Py_SIZE()`` macros.
|
|
|
|
|
|
|
|
Setting directly an object attribute relies on the current exact CPython
|
|
|
|
implementation. Implementing this feature in other Python
|
|
|
|
implementations can make their C API implementation less efficient.
|
|
|
|
|
|
|
|
CPython nogil fork
|
|
|
|
------------------
|
|
|
|
|
2021-12-02 11:57:02 -05:00
|
|
|
Sam Gross forked Python 3.9 to remove the GIL: the `nogil branch
|
2021-11-30 13:12:11 -05:00
|
|
|
<https://github.com/colesbury/nogil/>`_. This fork has no
|
|
|
|
``PyObject.ob_refcnt`` member, but a more elaborated implementation for
|
|
|
|
reference counting, and so the ``Py_REFCNT(obj) = new_refcnt;`` code
|
|
|
|
fails with a compiler error.
|
|
|
|
|
|
|
|
Merging the nogil fork into the upstream CPython main branch requires
|
|
|
|
first to fix this C API compatibility issue. It is a concrete example of
|
|
|
|
a Python optimization blocked indirectly by the C API.
|
|
|
|
|
|
|
|
This issue was already fixed in Python 3.10: the ``Py_REFCNT()`` macro
|
2022-01-26 17:10:52 -05:00
|
|
|
has been already modified to disallow using it as an l-value.
|
2021-11-30 13:12:11 -05:00
|
|
|
|
2021-12-02 11:57:02 -05:00
|
|
|
These statements are endorsed by Sam Gross (nogil developer).
|
|
|
|
|
2021-11-30 13:12:11 -05:00
|
|
|
HPy project
|
|
|
|
-----------
|
|
|
|
|
|
|
|
The `HPy project <https://hpyproject.org/>`_ is a brand new C API for
|
|
|
|
Python using only handles and function calls: handles are opaque,
|
2021-12-01 11:39:49 -05:00
|
|
|
structure members cannot be accessed directly, and pointers cannot be
|
2021-11-30 13:12:11 -05:00
|
|
|
dereferenced.
|
|
|
|
|
2021-12-01 11:39:49 -05:00
|
|
|
Searching and replacing ``Py_SET_SIZE()`` is easier and safer than
|
|
|
|
searching and replacing some strange macro uses of ``Py_SIZE()``.
|
|
|
|
``Py_SIZE()`` can be semi-mechanically replaced by ``HPy_Length()``,
|
|
|
|
whereas seeing ``Py_SET_SIZE()`` would immediately make clear that the
|
|
|
|
code needs bigger changes in order to be ported to HPy (for example by
|
|
|
|
using ``HPyTupleBuilder`` or ``HPyListBuilder``).
|
2021-11-30 13:12:11 -05:00
|
|
|
|
2021-12-01 11:39:49 -05:00
|
|
|
The fewer internal details exposed via macros, the easier it will be for
|
|
|
|
HPy to provide direct equivalents. Any macro that references
|
|
|
|
"non-public" interfaces effectively exposes those interfaces publicly.
|
2021-11-30 13:12:11 -05:00
|
|
|
|
2021-12-01 11:39:49 -05:00
|
|
|
These statements are endorsed by Antonio Cuni (HPy developer).
|
2021-11-30 13:12:11 -05:00
|
|
|
|
2021-12-01 12:33:11 -05:00
|
|
|
GraalVM Python
|
|
|
|
--------------
|
|
|
|
|
|
|
|
In GraalVM, when a Python object is accessed by the Python C API, the C API
|
|
|
|
emulation layer has to wrap the GraalVM objects into wrappers that expose
|
|
|
|
the internal structure of the CPython structures (PyObject, PyLongObject,
|
|
|
|
PyTypeObject, etc). This is because when the C code accesses it directly or via
|
|
|
|
macros, all GraalVM can intercept is a read at the struct offset, which has
|
|
|
|
to be mapped back to the representation in GraalVM. The smaller the
|
|
|
|
"effective" number of exposed struct members (by replacing macros with
|
|
|
|
functions), the simpler GraalVM wrappers can be.
|
|
|
|
|
|
|
|
This PEP alone is not enough to get rid of the wrappers in GraalVM, but it
|
|
|
|
is a step towards this long term goal. GraalVM already supports HPy which is a better
|
|
|
|
solution in the long term.
|
|
|
|
|
|
|
|
These statements are endorsed by Tim Felgentreff (GraalVM Python developer).
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
Specification
|
|
|
|
=============
|
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
Disallow using macros as l-values
|
|
|
|
----------------------------------
|
|
|
|
|
|
|
|
The following 65 macros are modified to disallow using them as l-values.
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
PyObject and PyVarObject macros
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ``Py_TYPE()``: ``Py_SET_TYPE()`` must be used instead
|
|
|
|
* ``Py_SIZE()``: ``Py_SET_SIZE()`` must be used instead
|
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
GET macros
|
|
|
|
^^^^^^^^^^
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
* ``PyByteArray_GET_SIZE()``
|
|
|
|
* ``PyBytes_GET_SIZE()``
|
|
|
|
* ``PyCFunction_GET_CLASS()``
|
|
|
|
* ``PyCFunction_GET_FLAGS()``
|
|
|
|
* ``PyCFunction_GET_FUNCTION()``
|
|
|
|
* ``PyCFunction_GET_SELF()``
|
|
|
|
* ``PyCell_GET()``
|
|
|
|
* ``PyCode_GetNumFree()``
|
|
|
|
* ``PyDict_GET_SIZE()``
|
|
|
|
* ``PyFunction_GET_ANNOTATIONS()``
|
|
|
|
* ``PyFunction_GET_CLOSURE()``
|
|
|
|
* ``PyFunction_GET_CODE()``
|
|
|
|
* ``PyFunction_GET_DEFAULTS()``
|
|
|
|
* ``PyFunction_GET_GLOBALS()``
|
|
|
|
* ``PyFunction_GET_KW_DEFAULTS()``
|
|
|
|
* ``PyFunction_GET_MODULE()``
|
|
|
|
* ``PyHeapType_GET_MEMBERS()``
|
|
|
|
* ``PyInstanceMethod_GET_FUNCTION()``
|
|
|
|
* ``PyList_GET_SIZE()``
|
|
|
|
* ``PyMemoryView_GET_BASE()``
|
|
|
|
* ``PyMemoryView_GET_BUFFER()``
|
|
|
|
* ``PyMethod_GET_FUNCTION()``
|
|
|
|
* ``PyMethod_GET_SELF()``
|
|
|
|
* ``PySet_GET_SIZE()``
|
|
|
|
* ``PyTuple_GET_SIZE()``
|
|
|
|
* ``PyUnicode_GET_DATA_SIZE()``
|
|
|
|
* ``PyUnicode_GET_LENGTH()``
|
|
|
|
* ``PyUnicode_GET_LENGTH()``
|
|
|
|
* ``PyUnicode_GET_SIZE()``
|
|
|
|
* ``PyWeakref_GET_OBJECT()``
|
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
AS macros
|
|
|
|
^^^^^^^^^
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
* ``PyByteArray_AS_STRING()``
|
|
|
|
* ``PyBytes_AS_STRING()``
|
|
|
|
* ``PyFloat_AS_DOUBLE()``
|
|
|
|
* ``PyUnicode_AS_DATA()``
|
|
|
|
* ``PyUnicode_AS_UNICODE()``
|
|
|
|
|
|
|
|
PyUnicode macros
|
|
|
|
^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
* ``PyUnicode_1BYTE_DATA()``
|
|
|
|
* ``PyUnicode_2BYTE_DATA()``
|
|
|
|
* ``PyUnicode_4BYTE_DATA()``
|
|
|
|
* ``PyUnicode_DATA()``
|
|
|
|
* ``PyUnicode_IS_ASCII()``
|
|
|
|
* ``PyUnicode_IS_COMPACT()``
|
|
|
|
* ``PyUnicode_IS_READY()``
|
|
|
|
* ``PyUnicode_KIND()``
|
|
|
|
* ``PyUnicode_READ()``
|
|
|
|
* ``PyUnicode_READ_CHAR()``
|
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
PyDateTime GET macros
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
* ``PyDateTime_DATE_GET_FOLD()``
|
|
|
|
* ``PyDateTime_DATE_GET_HOUR()``
|
|
|
|
* ``PyDateTime_DATE_GET_MICROSECOND()``
|
|
|
|
* ``PyDateTime_DATE_GET_MINUTE()``
|
|
|
|
* ``PyDateTime_DATE_GET_SECOND()``
|
|
|
|
* ``PyDateTime_DATE_GET_TZINFO()``
|
|
|
|
* ``PyDateTime_DELTA_GET_DAYS()``
|
|
|
|
* ``PyDateTime_DELTA_GET_MICROSECONDS()``
|
|
|
|
* ``PyDateTime_DELTA_GET_SECONDS()``
|
|
|
|
* ``PyDateTime_GET_DAY()``
|
|
|
|
* ``PyDateTime_GET_MONTH()``
|
|
|
|
* ``PyDateTime_GET_YEAR()``
|
|
|
|
* ``PyDateTime_TIME_GET_FOLD()``
|
|
|
|
* ``PyDateTime_TIME_GET_HOUR()``
|
|
|
|
* ``PyDateTime_TIME_GET_MICROSECOND()``
|
|
|
|
* ``PyDateTime_TIME_GET_MINUTE()``
|
|
|
|
* ``PyDateTime_TIME_GET_SECOND()``
|
|
|
|
* ``PyDateTime_TIME_GET_TZINFO()``
|
|
|
|
|
|
|
|
Port C extensions to Python 3.11
|
|
|
|
--------------------------------
|
|
|
|
|
2021-12-01 11:05:22 -05:00
|
|
|
In practice, the majority of projects affected by these PEP only have to
|
|
|
|
make two changes:
|
2021-11-30 13:12:11 -05:00
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
* Replace ``Py_TYPE(obj) = new_type``
|
|
|
|
with ``Py_SET_TYPE(obj, new_type)``.
|
|
|
|
* Replace ``Py_SIZE(obj) = new_size``
|
|
|
|
with ``Py_SET_SIZE(obj, new_size)``.
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
The `pythoncapi_compat project
|
|
|
|
<https://github.com/pythoncapi/pythoncapi_compat>`_ can be used to
|
|
|
|
update automatically C extensions: add Python 3.11 support without
|
|
|
|
losing support with older Python versions. The project provides a header
|
|
|
|
file which provides ``Py_SET_REFCNT()``, ``Py_SET_TYPE()`` and
|
|
|
|
``Py_SET_SIZE()`` functions to Python 3.8 and older.
|
|
|
|
|
2022-01-26 17:10:52 -05:00
|
|
|
PyTuple_GET_ITEM() and PyList_GET_ITEM() are left unchanged
|
|
|
|
-----------------------------------------------------------
|
|
|
|
|
|
|
|
The ``PyTuple_GET_ITEM()`` and ``PyList_GET_ITEM()`` macros are left
|
|
|
|
unchanged.
|
|
|
|
|
|
|
|
The code patterns ``&PyTuple_GET_ITEM(tuple, 0)`` and
|
|
|
|
``&PyList_GET_ITEM(list, 0)`` are still commonly used to get access to
|
|
|
|
the inner ``PyObject**`` array.
|
|
|
|
|
|
|
|
Changing these macros is out of the scope of this PEP.
|
|
|
|
|
|
|
|
PyDescr_NAME() and PyDescr_TYPE() are left unchanged
|
|
|
|
----------------------------------------------------
|
|
|
|
|
|
|
|
The ``PyDescr_NAME()`` and ``PyDescr_TYPE()`` macros are left unchanged.
|
|
|
|
|
|
|
|
These macros give access to ``PyDescrObject.d_name`` and
|
|
|
|
``PyDescrObject.d_type`` members. They can be used as l-values to set
|
|
|
|
these members.
|
|
|
|
|
|
|
|
The SWIG project uses these macros as l-values to set these members. It
|
|
|
|
would be possible to modify SWIG to prevent setting ``PyDescrObject``
|
|
|
|
structure members directly, but it is not really worth it since the
|
|
|
|
``PyDescrObject`` structure is not performance critical and is unlikely
|
|
|
|
to change soon.
|
|
|
|
|
|
|
|
See the `bpo-46538 <https://bugs.python.org/issue46538>`_ "[C API] Make
|
|
|
|
the PyDescrObject structure opaque: PyDescr_NAME() and PyDescr_TYPE()"
|
|
|
|
issue for more details.
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
Implementation
|
|
|
|
==============
|
|
|
|
|
|
|
|
The implementation is tracked by `bpo-45476: [C API] PEP 674: Disallow
|
|
|
|
using macros as l-values <https://bugs.python.org/issue45476>`_.
|
|
|
|
|
|
|
|
Py_TYPE() and Py_SIZE() macros
|
|
|
|
------------------------------
|
|
|
|
|
|
|
|
In May 2020, the ``Py_TYPE()`` and ``Py_SIZE()`` macros have been
|
|
|
|
modified to disallow using them as l-values (`Py_TYPE
|
|
|
|
<https://github.com/python/cpython/commit/ad3252bad905d41635bcbb4b76db30d570cf0087>`_,
|
|
|
|
`Py_SIZE
|
|
|
|
<https://github.com/python/cpython/commit/fe2978b3b940fe2478335e3a2ca5ad22338cdf9c>`_).
|
|
|
|
|
|
|
|
In November 2020, the change was `reverted
|
|
|
|
<https://github.com/python/cpython/commit/0e2ac21dd4960574e89561243763eabba685296a>`__,
|
|
|
|
since it broke too many third party projects.
|
|
|
|
|
|
|
|
In June 2021, once most third party projects were updated, a `second
|
|
|
|
attempt
|
|
|
|
<https://github.com/python/cpython/commit/f3fa63ec75fdbb4a08a10957a5c631bf0c4a5970>`_
|
|
|
|
was done, but had to be `reverted again
|
|
|
|
<https://github.com/python/cpython/commit/6d518bb3a11f9b16098f45b21a13ebe8f537f045>`__
|
|
|
|
, since it broke test_exceptions on Windows.
|
|
|
|
|
|
|
|
In September 2021, once `test_exceptions has been fixed
|
|
|
|
<https://github.com/python/cpython/commit/fb305092a5d7894b41f122c1a1117b3abf4c567e>`_,
|
|
|
|
Py_TYPE() and Py_SIZE() were finally `changed
|
|
|
|
<https://github.com/python/cpython/commit/f3fa63ec75fdbb4a08a10957a5c631bf0c4a5970>`_.
|
|
|
|
|
|
|
|
In November 2021, this backward incompatible change got a
|
|
|
|
`Steering Council exception
|
|
|
|
<https://github.com/python/steering-council/issues/79#issuecomment-981153173>`_.
|
|
|
|
|
2022-11-22 19:33:29 -05:00
|
|
|
In October 2022, Python 3.11 got released with Py_TYPE() and Py_SIZE()
|
|
|
|
incompatible changes.
|
2022-01-27 15:26:01 -05:00
|
|
|
|
|
|
|
Backwards Compatibility
|
|
|
|
=======================
|
|
|
|
|
|
|
|
The proposed C API changes are backward incompatible on purpose.
|
|
|
|
|
2022-02-07 10:09:57 -05:00
|
|
|
In practice, only ``Py_TYPE()`` and ``Py_SIZE()`` macros are used as
|
|
|
|
l-values.
|
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
This change does not follow the :pep:`387` deprecation process. There is
|
|
|
|
no known way to emit a deprecation warning only when a macro is used as
|
|
|
|
an l-value, but not when it's used differently (ex: as a r-value).
|
|
|
|
|
|
|
|
The following 4 macros are left unchanged to reduce the number of
|
|
|
|
affected projects: ``PyDescr_NAME()``, ``PyDescr_TYPE()``,
|
|
|
|
``PyList_GET_ITEM()`` and ``PyTuple_GET_ITEM()``.
|
|
|
|
|
2022-02-07 10:09:57 -05:00
|
|
|
Statistics
|
|
|
|
----------
|
|
|
|
|
2022-09-14 20:13:48 -04:00
|
|
|
In total (projects on PyPI and not on PyPI), 34 projects are known to be
|
2022-02-07 20:03:50 -05:00
|
|
|
affected by this PEP:
|
2022-02-07 10:09:57 -05:00
|
|
|
|
2022-09-14 20:13:48 -04:00
|
|
|
* 16 projects (47%) are already fixed
|
|
|
|
* 18 projects (53%) are not fixed yet
|
|
|
|
(pending fix or have to regenerate their Cython code)
|
2022-02-07 10:09:57 -05:00
|
|
|
|
2022-11-22 19:33:29 -05:00
|
|
|
On September 1, 2022, the PEP affects 18 projects (0.4%) of the top 5000
|
2022-02-07 10:09:57 -05:00
|
|
|
PyPI projects:
|
|
|
|
|
2022-09-14 20:13:48 -04:00
|
|
|
* 15 projects (0.3%) have to regenerate their Cython code
|
|
|
|
* 3 projects (0.1%) have a pending fix
|
2022-02-07 10:09:57 -05:00
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
Top 5000 PyPI
|
|
|
|
-------------
|
|
|
|
|
2022-09-14 20:13:48 -04:00
|
|
|
Projects with a pending fix (3):
|
2022-01-27 15:26:01 -05:00
|
|
|
|
|
|
|
* datatable (1.0.0):
|
2022-09-14 20:13:48 -04:00
|
|
|
`fixed <https://github.com/h2oai/datatable/commit/02f13114828ed4567e4410f5bac579895e20355a>`__
|
2022-02-07 10:09:57 -05:00
|
|
|
* guppy3 (3.1.2):
|
|
|
|
`fixed <https://github.com/zhuyifei1999/guppy3/commit/4cb9fcb5d75327544a6875b6caabfdffb70a7e29>`__
|
2022-11-22 19:33:29 -05:00
|
|
|
* scipy (1.9.3): need to update boost python
|
2022-01-27 15:26:01 -05:00
|
|
|
|
2022-09-14 20:13:48 -04:00
|
|
|
Moreover, 15 projects have to regenerate their Cython code.
|
2022-01-27 15:26:01 -05:00
|
|
|
|
2022-09-14 20:13:48 -04:00
|
|
|
Projects released with a fix (12):
|
2022-01-27 15:26:01 -05:00
|
|
|
|
|
|
|
* bitarray (1.6.2):
|
|
|
|
`commit <https://github.com/ilanschnell/bitarray/commit/a0cca9f2986ec796df74ca8f42aff56c4c7103ba>`__
|
|
|
|
* Cython (0.29.20): `commit <https://github.com/cython/cython/commit/d8e93b332fe7d15459433ea74cd29178c03186bd>`__
|
|
|
|
* immutables (0.15):
|
|
|
|
`commit <https://github.com/MagicStack/immutables/commit/45105ecd8b56a4d88dbcb380fcb8ff4b9cc7b19c>`__
|
|
|
|
* mercurial (5.7):
|
|
|
|
`commit <https://www.mercurial-scm.org/repo/hg/rev/e92ca942ddca>`__,
|
|
|
|
`bug report <https://bz.mercurial-scm.org/show_bug.cgi?id=6451>`__
|
|
|
|
* mypy (v0.930):
|
|
|
|
`commit <https://github.com/python/mypy/commit/2b7e2df923f7e4a3a199915b3c8563f45bc69dfa>`__
|
|
|
|
* numpy (1.22.1):
|
|
|
|
`commit <https://github.com/numpy/numpy/commit/a96b18e3d4d11be31a321999cda4b795ea9eccaa>`__,
|
|
|
|
`commit 2 <https://github.com/numpy/numpy/commit/f1671076c80bd972421751f2d48186ee9ac808aa>`__
|
|
|
|
* pycurl (7.44.1):
|
|
|
|
`commit <https://github.com/pycurl/pycurl/commit/e633f9a1ac4df5e249e78c218d5fbbd848219042>`__
|
|
|
|
* PyGObject (3.42.0)
|
|
|
|
* pyside2 (5.15.1):
|
|
|
|
`bug report <https://bugreports.qt.io/browse/PYSIDE-1436>`__
|
2022-09-14 20:13:48 -04:00
|
|
|
* python-snappy (0.6.1):
|
|
|
|
`fixed <https://github.com/andrix/python-snappy/commit/1a539d71d5b1ceaf9a2291f21f686cf53a46d707>`__
|
|
|
|
* recordclass (0.17.2):
|
|
|
|
`fixed <https://bitbucket.org/intellimath/recordclass/commits/d20d72fa3cdbdcf96c72941560041460adeecff1>`__
|
2022-02-07 10:09:57 -05:00
|
|
|
* zstd (1.5.0.3):
|
2022-01-27 15:26:01 -05:00
|
|
|
`commit <https://github.com/sergey-dryabzhinsky/python-zstd/commit/8aa6d7a4b250e1f0a4e27b4107c39dc516c87f96>`__
|
|
|
|
|
2022-02-07 10:09:57 -05:00
|
|
|
There are also two backport projects which are affected by this PEP:
|
|
|
|
|
|
|
|
* pickle5 (0.0.12): backport for Python <= 3.7
|
|
|
|
* pysha3 (1.0.2): backport for Python <= 3.5
|
|
|
|
|
|
|
|
They must not be used and cannot be used on Python 3.11.
|
|
|
|
|
|
|
|
Other affected projects
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
Other projects released with a fix (4):
|
|
|
|
|
|
|
|
* boost (1.78.0):
|
|
|
|
`commit <https://github.com/boostorg/python/commit/500194edb7833d0627ce7a2595fec49d0aae2484>`__
|
|
|
|
* breezy (3.2.1):
|
|
|
|
`bug report <https://bugs.launchpad.net/brz/+bug/1904868>`__
|
|
|
|
* duplicity (0.8.18):
|
|
|
|
`commit <https://git.launchpad.net/duplicity/commit/duplicity/_librsyncmodule.c?id=bbaae91b5ac6ef7e295968e508522884609fbf84>`__
|
|
|
|
* gobject-introspection (1.70.0):
|
|
|
|
`MR <https://gitlab.gnome.org/GNOME/gobject-introspection/-/merge_requests/243>`__
|
|
|
|
|
2022-01-27 15:26:01 -05:00
|
|
|
|
2022-01-18 02:50:48 -05:00
|
|
|
Relationship with the HPy project
|
|
|
|
=================================
|
|
|
|
|
|
|
|
The HPy project
|
|
|
|
---------------
|
|
|
|
|
2022-01-19 05:22:37 -05:00
|
|
|
The hope with the HPy project is to provide a C API that is close
|
|
|
|
to the original API—to make porting easy—and have it perform as close to
|
2023-05-01 15:00:36 -04:00
|
|
|
the existing API as possible. At the same time, HPy is sufficiently
|
2022-01-18 02:50:48 -05:00
|
|
|
removed to be a good "C extension API" (as opposed to a stable subset of
|
|
|
|
the CPython implementation API) that does not leak implementation
|
2022-01-19 05:22:37 -05:00
|
|
|
details. To ensure this latter property, the HPy project tries to
|
2022-01-18 02:50:48 -05:00
|
|
|
develop everything in parallel for CPython, PyPy, and GraalVM Python.
|
|
|
|
|
|
|
|
HPy is still evolving very fast. Issues are still being solved while
|
|
|
|
migrating NumPy, and work has begun on adding support for HPy to Cython. Work on
|
|
|
|
pybind11 is starting soon. Tim Felgentreff believes by the time HPy has
|
|
|
|
these users of the existing C API working, HPy should be in a state
|
|
|
|
where it is generally useful and can be deemed stable enough that
|
|
|
|
further development can follow a more stable process.
|
|
|
|
|
|
|
|
In the long run the HPy project would like to become a promoted API to
|
|
|
|
write Python C extensions.
|
|
|
|
|
|
|
|
The HPy project is a good solution for the long term. It has the
|
|
|
|
advantage of being developed outside Python and it doesn't require any C
|
|
|
|
API change.
|
|
|
|
|
|
|
|
The C API is here is stay for a few more years
|
|
|
|
----------------------------------------------
|
|
|
|
|
|
|
|
The first concern about HPy is that right now, HPy is not mature nor
|
|
|
|
widely used, and CPython still has to continue supporting a large amount
|
|
|
|
of C extensions which are not likely to be ported to HPy soon.
|
|
|
|
|
|
|
|
The second concern is the inability to evolve CPython internals to
|
|
|
|
implement new optimizations, and the inefficient implementation of the
|
|
|
|
current C API in PyPy, GraalPython, etc. Sadly, HPy will only solve
|
|
|
|
these problems when most C extensions will be fully ported to HPy:
|
|
|
|
when it will become reasonable to consider dropping the "legacy" Python
|
|
|
|
C API.
|
|
|
|
|
|
|
|
While porting a C extension to HPy can be done incrementally on CPython,
|
|
|
|
it requires to modify a lot of code and takes time. Porting most C
|
|
|
|
extensions to HPy is expected to take a few years.
|
|
|
|
|
|
|
|
This PEP proposes to make the C API "less bad" by fixing one problem
|
|
|
|
which is clearily identified as causing practical issues: macros used as
|
2022-01-26 17:10:52 -05:00
|
|
|
l-values. This PEP only requires updating a minority of C
|
|
|
|
extensions, and usually only a few lines need to be changed in impacted
|
|
|
|
extensions.
|
2022-01-18 02:50:48 -05:00
|
|
|
|
2022-01-19 05:22:37 -05:00
|
|
|
For example, NumPy 1.22 is made of 307,300 lines of C code, and adapting
|
|
|
|
NumPy to the this PEP only modified 11 lines (use Py_SET_TYPE and
|
2022-01-18 02:50:48 -05:00
|
|
|
Py_SET_SIZE) and adding 4 lines (to define Py_SET_TYPE and Py_SET_SIZE
|
2022-01-19 05:22:37 -05:00
|
|
|
for Python 3.8 and older). The beginnings of the NumPy port to HPy
|
|
|
|
already required modifying more lines than that.
|
2022-01-18 02:50:48 -05:00
|
|
|
|
|
|
|
Right now, it's hard to bet which approach is the best: fixing the
|
|
|
|
current C API, or focusing on HPy. It would be risky to only focus on
|
|
|
|
HPy.
|
|
|
|
|
|
|
|
|
2021-11-30 13:12:11 -05:00
|
|
|
Rejected Idea: Leave the macros as they are
|
|
|
|
===========================================
|
|
|
|
|
|
|
|
The documentation of each function can discourage developers to use
|
|
|
|
macros to modify Python objects.
|
|
|
|
|
|
|
|
If these is a need to make an assignment, a setter function can be added
|
|
|
|
and the macro documentation can require to use the setter function. For
|
|
|
|
example, a ``Py_SET_TYPE()`` function has been added to Python 3.9 and
|
|
|
|
the ``Py_TYPE()`` documentation now requires to use the
|
|
|
|
``Py_SET_TYPE()`` function to set an object type.
|
|
|
|
|
2022-01-26 17:10:52 -05:00
|
|
|
If developers use macros as an l-value, it's their responsibility when
|
|
|
|
their code breaks, not Python's responsibility. We are operating under
|
2021-11-30 13:12:11 -05:00
|
|
|
the consenting adults principle: we expect users of the Python C API to
|
|
|
|
use it as documented and expect them to take care of the fallout, if
|
|
|
|
things break when they don't.
|
|
|
|
|
|
|
|
This idea was rejected because only few developers read the
|
|
|
|
documentation, and only a minority is tracking changes of the Python C
|
|
|
|
API documentation. The majority of developers are only using CPython and
|
|
|
|
so are not aware of compatibility issues with other Python
|
|
|
|
implementations.
|
|
|
|
|
2022-01-26 17:10:52 -05:00
|
|
|
Moreover, continuing to allow using macros as an l-value does not help
|
|
|
|
the HPy project, and leaves the burden of emulating them on GraalVM's
|
|
|
|
Python implementation.
|
2021-11-30 13:12:11 -05:00
|
|
|
|
|
|
|
|
|
|
|
Macros already modified
|
|
|
|
=======================
|
|
|
|
|
|
|
|
The following C API macros have already been modified to disallow using
|
|
|
|
them as l-value:
|
|
|
|
|
|
|
|
* ``PyCell_SET()``
|
|
|
|
* ``PyList_SET_ITEM()``
|
|
|
|
* ``PyTuple_SET_ITEM()``
|
|
|
|
* ``Py_REFCNT()`` (Python 3.10): ``Py_SET_REFCNT()`` must be used
|
|
|
|
* ``_PyGCHead_SET_FINALIZED()``
|
|
|
|
* ``_PyGCHead_SET_NEXT()``
|
|
|
|
* ``asdl_seq_GET()``
|
|
|
|
* ``asdl_seq_GET_UNTYPED()``
|
|
|
|
* ``asdl_seq_LEN()``
|
|
|
|
* ``asdl_seq_SET()``
|
|
|
|
* ``asdl_seq_SET_UNTYPED()``
|
|
|
|
|
|
|
|
For example, ``PyList_SET_ITEM(list, 0, item) < 0`` now fails with a
|
|
|
|
compiler error as expected.
|
|
|
|
|
|
|
|
|
2022-11-22 19:33:29 -05:00
|
|
|
Post History
|
|
|
|
============
|
2022-01-18 02:53:30 -05:00
|
|
|
|
2022-11-22 19:33:29 -05:00
|
|
|
* `PEP 674 "Disallow using macros as l-values" and Python 3.11
|
|
|
|
<https://discuss.python.org/t/pep-674-disallow-using-macros-as-l-values-and-python-3-11/18297>`__ (August 18, 2022)
|
|
|
|
* `SC reply to PEP 674 -- Disallow using macros as l-values
|
|
|
|
<https://mail.python.org/archives/list/python-dev@python.org/thread/CV6KWDRHV5WP6TIDK3Z46PW7HNSHYOWG/>`__ (February 22, 2022)
|
2022-01-26 18:49:16 -05:00
|
|
|
* `PEP 674: Disallow using macros as l-value (version 2)
|
|
|
|
<https://mail.python.org/archives/list/python-dev@python.org/thread/J7SXC2YQGP37UYIEULISLUTKW5FHN3Z7/>`_
|
|
|
|
(Jan 18, 2022)
|
2022-01-18 02:53:30 -05:00
|
|
|
* `PEP 674: Disallow using macros as l-value
|
|
|
|
<https://mail.python.org/archives/list/python-dev@python.org/thread/KPIJPPJ6XVNOLGZQD2PFGMT7LBJMTTCO/>`_
|
|
|
|
(Nov 30, 2021)
|
|
|
|
|
|
|
|
|
2021-11-30 13:12:11 -05:00
|
|
|
References
|
|
|
|
==========
|
|
|
|
|
|
|
|
* `Python C API: Add functions to access PyObject
|
|
|
|
<https://vstinner.github.io/c-api-abstract-pyobject.html>`_ (October
|
|
|
|
2021) article by Victor Stinner
|
|
|
|
* `[capi-sig] Py_TYPE() and Py_SIZE() become static inline functions
|
|
|
|
<https://mail.python.org/archives/list/capi-sig@python.org/thread/WGRLTHTHC32DQTACPPX36TPR2GLJAFRB/>`_
|
|
|
|
(September 2021)
|
|
|
|
* `[C API] Avoid accessing PyObject and PyVarObject members directly: add Py_SET_TYPE() and Py_IS_TYPE(), disallow Py_TYPE(obj)=type
|
|
|
|
<https://bugs.python.org/issue39573>`__ (February 2020)
|
|
|
|
* `bpo-30459: PyList_SET_ITEM could be safer
|
|
|
|
<https://bugs.python.org/issue30459>`_ (May 2017)
|
|
|
|
|
|
|
|
|
2022-01-26 17:10:52 -05:00
|
|
|
Version History
|
|
|
|
===============
|
|
|
|
|
|
|
|
* Version 3: No longer change PyDescr_TYPE() and PyDescr_NAME() macros
|
|
|
|
* Version 2: Add "Relationship with the HPy project" section, remove
|
|
|
|
the PyPy section
|
|
|
|
* Version 1: First public version
|
|
|
|
|
|
|
|
|
2021-11-30 13:12:11 -05:00
|
|
|
Copyright
|
|
|
|
=========
|
|
|
|
|
|
|
|
This document is placed in the public domain or under the
|
|
|
|
CC0-1.0-Universal license, whichever is more permissive.
|