PEP 556: Mark deferred (#942)
This commit is contained in:
parent
24761a120c
commit
ad0f49e0a2
17
pep-0556.rst
17
pep-0556.rst
|
@ -1,7 +1,7 @@
|
|||
PEP: 556
|
||||
Title: Threaded garbage collection
|
||||
Author: Antoine Pitrou <solipsis@pitrou.net>
|
||||
Status: Draft
|
||||
Status: Deferred
|
||||
Type: Standards Track
|
||||
Content-Type: text/x-rst
|
||||
Created: 2017-09-08
|
||||
|
@ -9,6 +9,19 @@ Python-Version: 3.7
|
|||
Post-History: 2017-09-08
|
||||
|
||||
|
||||
Deferral Notice
|
||||
===============
|
||||
|
||||
This PEP is currently not being actively worked on. It may be revived
|
||||
in the future. The main missing steps are:
|
||||
|
||||
* polish the implementation, adapting the test suite where necessary;
|
||||
|
||||
* ensure setting threaded garbage collection does not disrupt existing
|
||||
code in unexpected ways (expected impact includes lengthening the
|
||||
lifetime of objects in reference cycles).
|
||||
|
||||
|
||||
Abstract
|
||||
========
|
||||
|
||||
|
@ -138,6 +151,8 @@ not a problem.
|
|||
Internal details
|
||||
================
|
||||
|
||||
TODO: Update this section to conform to the current implementation.
|
||||
|
||||
``gc`` module
|
||||
-------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue