From a6ccce73040b48474235e65894ff6a5c4bbe534a Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Sun, 11 Jul 2021 09:11:32 +0100 Subject: [PATCH] PEP 0554: drop wording about daemon threads in isolated subinterpreters (#2000) * drop wording about daemon threads in isolated subinterpreters new threads are not allowed (including daemon threads) implies that the opposite is true in isolated=False subinterpreters, that new threads are allowed (*excluding* daemon threads) * Update pep-0554.rst Co-authored-by: Thomas Grainger Co-authored-by: Eric Snow --- pep-0554.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0554.rst b/pep-0554.rst index 80753ad19..7a924fee6 100644 --- a/pep-0554.rst +++ b/pep-0554.rst @@ -973,7 +973,7 @@ following: * importing an extension module fails if it does not implement the PEP 489 API -* new threads are not allowed (including daemon threads) +* new threads of any kind are not allowed * ``os.fork()`` is not allowed (so no ``multiprocessing``) * ``os.exec*()``, AKA "fork+exec", is not allowed (so no ``subprocess``)