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 <tagrain@gmail.com>

Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
This commit is contained in:
Thomas Grainger 2021-07-11 09:11:32 +01:00 committed by GitHub
parent c40101bad1
commit a6ccce7304
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -973,7 +973,7 @@ following:
* importing an extension module fails if it does not implement the * importing an extension module fails if it does not implement the
PEP 489 API 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.fork()`` is not allowed (so no ``multiprocessing``)
* ``os.exec*()``, AKA "fork+exec", is not allowed (so no ``subprocess``) * ``os.exec*()``, AKA "fork+exec", is not allowed (so no ``subprocess``)