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
Fix header until discuss links is available
  • Loading branch information
markshannon committed Sep 8, 2025
commit 1805d9ec8295268ea75423103f1ddffca1bef8ce
5 changes: 3 additions & 2 deletions peps/pep-0805.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
PEP: 805
Title: Safe Parallel Python
Author: Mark Shannon <[email protected]>
Discussions-To: discuss.python.org
Discussions-To: Pending
Status: Draft
Type: Standards Track
Created: 08-Sep-2025
Post-History: ??? <REQUIRED: dates, in dd-mmm-yyyy format, and corresponding links to PEP discussion threads>

Abstract
========
Expand Down Expand Up @@ -491,6 +490,7 @@ A possible object header:
uint8_t gc_bits;
PyTypeObject *ob_type;


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

Expand All @@ -502,6 +502,7 @@ or if we use atomic reference counting for non-local objects, we can use pointer
uint8_t gc_bits;
PyTypeObject *ob_type;


Reference counting
------------------

Expand Down
Loading