Message367778
| Author |
vstinner |
| Recipients |
vstinner |
| Date |
2020年04月30日.20:00:56 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1588276857.13.0.360538290387.issue40453@roundup.psfhosted.org> |
| In-reply-to |
| Content |
I propose to add PyConfig._isolated_interpreter configuration parameter to disallow threads, subprocesses and fork in a subinterpreter.
_xxsubinterpreter.create() gets a new keyword-only isolated=True parameter to opt-in for not isolated mode, which is the current behavior of Py_NewInterpreter(). For example, mod_wsgi would continue to run in "non isolated" mode.
Attached PR implements this change. With the change, os.fork() is allowed again in "non isolated" subinterpreters (like mod_wsgi). os.fork() was disallowed in subinterpreters in Python 3.8, but subprocess was still allowed. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2020年04月30日 20:00:57 | vstinner | set | recipients:
+ vstinner |
| 2020年04月30日 20:00:57 | vstinner | set | messageid: <1588276857.13.0.360538290387.issue40453@roundup.psfhosted.org> |
| 2020年04月30日 20:00:57 | vstinner | link | issue40453 messages |
| 2020年04月30日 20:00:56 | vstinner | create |
|