PEP 556: Mark deferred (#942)

This commit is contained in:
Antoine Pitrou 2019-03-22 17:32:16 +00:00 committed by Brett Cannon
parent 24761a120c
commit ad0f49e0a2
1 changed files with 16 additions and 1 deletions

View File

@ -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
-------------