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:
parent
c40101bad1
commit
a6ccce7304
|
@ -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``)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue