https://github.com/python/cpython/commit/7d485fedf4c4a9894c1c49aa553ee8ab4736ef51 commit: 7d485fedf4c4a9894c1c49aa553ee8ab4736ef51 branch: 3.15 author: Miss Islington (bot) <[email protected]> committer: StanFromIreland <[email protected]> date: 2026-07-20T10:15:06Z summary:
[3.15] Fix typo in C API Type Object Structures documentation (GH-154249) (#154250) (cherry picked from commit 86e1fed859dab3de8f069208ef33cee24d816c79) Co-authored-by: Michael Newman <[email protected]> files: M Doc/c-api/typeobj.rst diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index 16dcb880712d24..4000f8aa1d4c0c 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -3051,7 +3051,7 @@ Buffer Object Structures * Resource cleanup when the counter reaches zero must be done atomically, as the final release may race with concurrent releases from other - threads and dellocation must only happen once. + threads and deallocation must only happen once. The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep track of buffer-specific resources. This field is guaranteed to remain _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
