-
-
Notifications
You must be signed in to change notification settings - Fork 31.8k
Removing old buffer support #85275
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
Comments
https://docs.python.org/3/c-api/objbuffer.html |
I've just seen a fix of PyQt4 that basically copy pastes (some of) the removed code to PyQt4: https://src.fedoraproject.org/rpms/PyQt4/pull-request/2#request_diff What is the benefit of removing this? Is copy pasting the compatibility layer to (possibly many) different projects worth the "cleanup"? In Fedora, at least 7 packages are broken so far: PyQt4: https://bugzilla.redhat.com/show_bug.cgi?id=1895298 |
PyObject_AsCharBuffer() is dangerous: it returns a dangling pointer by design. PyObject_GetBuffer() design is safer: the API ensures that the buffer remains valid until PyBuffer_Release() is called. PyQt5 was updated to use the safe PyObject_GetBuffer()/PyBuffer_Release(). PyQt4 is no longer updated, that's why I proposed a downstream fix which copy/paste the old code. Changing PyQt4 to use the safe API was not worth it, since it's complex to redesign the impacted function qpycore_encode(). |
Thank you for reporting. I removed these APIs to get such feedback as early as possible. We are free to revive these APIs if it breaks too much and some projects can not be fixed before Python 3.10 release. Some project maintainers ignore deprecations and wait compile errors to fix soemthing. (e.g. rogerbinns/apsw#288 (comment))
Oh, no need to copy-paste compatibility layer for all projects. They can migrate to new APIs. |
Also filed under https://bugs.python.org/issue44609 PEP-384 and PEP-652 define a stable ABI to be used with Python 3.2 and later. On Windows, symbols for the stable ABI are exported from the python3.dll shared library. The following functions are present in Python 3.9 but have been removed from Python 3.10b3: PyObject_AsCharBuffer()
PyObject_AsReadBuffer()
PyObject_AsWriteBuffer()
PyObject_CheckReadBuffer() Without these functions, an extension cannot utilize the stable ABI to access the buffer memory of data structures. The buffer protocol is suggested as an alternative, but the buffer functions PyObject_GetBuffer() and PyBuffer_Release() are not present in the stable ABI. While these two functions may be added to the stable ABI, removal of the four functions above makes Python 3.10 incompatible with previous versions. It is requested that the four functions be reinstated and maintained as described in PEP-652. |
Oh, I didn't notice that APIs deprecated in Python 3.0 are included in stable ABIs defined at Python 3.2! |
Should I resurrect only function implementation and symbol? |
Resolved as "wontfix" due to presence in the stable ABI. |
These should be removed from the *limited API*, but stay for the stable ABI. I assigned this to myself; I'll try to get to it for 3.11.
Yes. PyObject_AsReadBuffer is dangerous *in general*, but in certain specific cases where you're relying on CPython implementations details it can work. For example, borrowing a buffer from a *string* or *array* will work on CPython, and I don't see that changing any time soon. So, using PyObject_AsReadBuffer is still tech debt, but for some projects that's OK. All this should be documented in the release notes, though, so the projects know what they're doing. (And the release notes should be written *with the change*, not later, so projects testing early can read them.) |
I closed my issue #105186 as a duplicate of this one. Copy of my message. Would it be ok to remove the legacy "buffer" API in Python 3.13, scheduled for October 2024? I'm talking about functions:
This API is deprecated since Python 3.0 and is older than the new In June 2020, there was a first attempt to remove these functions in issue #85275: commit 6f8a6ee. It caused too many troubles and had to be reverted the following year (commit ce5e1a6, July 2021). The removed functions were still used by at least 6 projects:
The webassets project was also mentioned, but I'm not sure that its failure is related to these removal: see https://bugzilla.redhat.com/show_bug.cgi?id=1899555 I cannot find these functions in https://github.com/Kronuz/pyScss code right now. Sadly, the 4 functions are part of the stable ABI and have to be kept there. I'm only asking to remove them in the C API. The issue #88775 was complaining that the functions were removed wheareas they are part of the stable ABI. |
Sorry I didn't get to this.
Please keep (or add) tests for them, so they don't regress. |
They are now abi-only. Co-authored-by: Victor Stinner <vstinner@python.org>
for details, see python/cpython#85275
for details, see python/cpython#85275
for details, see python/cpython#85275
for details, see python/cpython#85275
for details, see python/cpython#85275
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
Linked PRs
The text was updated successfully, but these errors were encountered: