Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add newlines
  • Loading branch information
markshannon committed Sep 8, 2025
commit 40cc8f6f4a620e68b10777a49216b092422bc92b
2 changes: 2 additions & 0 deletions peps/pep-0805.rst
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@ With these fields, the ``PyObject`` header should be the smaller than is current
although larger than for the default (with GIL) build.

A possible object header:

.. code-block:: C

uint32_t ref_count_local;
Expand All @@ -492,6 +493,7 @@ A possible object header:


or if we use atomic reference counting for non-local objects, we can use pointers for owners:

.. code-block:: C

uintptr_t owner;
Expand Down
Loading