This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2019年04月26日 22:28 by eric.snow, last changed 2022年04月11日 14:59 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 13159 | merged | eric.snow, 2019年05月07日 16:15 | |
| Messages (4) | |||
|---|---|---|---|
| msg340951 - (view) | Author: Eric Snow (eric.snow) * (Python committer) | Date: 2019年04月26日 22:28 | |
(See Include/internal/pycore_warnings.h and Python/_warnings.c.) The warnings module's state (filters, default action, etc.) is currently stored at the level of the global runtime. That's a problem for the following reasons: * Python objects are getting stored in _PyRuntimeState * it breaks the isolation of behavior between interpreters * objects are leaking between interpreters * importing the module in a subinterpreter effectively resets the module's state While those are all a problem in a future where interpreters don't share the GIL, that last one is a problem right now for people using subinterpreters. One of the following should happen: * move warnings state down to PyInterpreterState * move warnings state into PyInterpreterState.dict * use the module-state API (PEP 3121) * just work out of the module's __dict__ I could also see use cases for *also* configuring warnings process-wide but that could be handled separately if actually desired. |
|||
| msg340987 - (view) | Author: Steve Dower (steve.dower) * (Python committer) | Date: 2019年04月27日 14:39 | |
> I could also see use cases for *also* configuring warnings process-wide but that could be handled separately if actually desired. Beyond "warning configuration is inherited by new interpreters", I don't see any reason to have process wide configuration. People using Python directly will get "process" wide from runtime configuration, and embedders don't want anything implicitly process-wide at all. |
|||
| msg340988 - (view) | Author: Eric Snow (eric.snow) * (Python committer) | Date: 2019年04月27日 15:05 | |
Good point. Also, the whole idea of inheriting things (settings, some copied objects, etc.) into subinterpreters is interesting. My initial reaction is that folks would appreciate that feature, at least for a handful of things. It's not critical, but is worth adding to the list of deferred ideas in PEP 554. :) |
|||
| msg342083 - (view) | Author: Eric Snow (eric.snow) * (Python committer) | Date: 2019年05月10日 17:29 | |
New changeset 86ea58149c3e83f402cecd17e6a536865fb06ce1 by Eric Snow in branch 'master': bpo-36737: Use the module state C-API for warnings. (gh-13159) https://github.com/python/cpython/commit/86ea58149c3e83f402cecd17e6a536865fb06ce1 |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:59:14 | admin | set | github: 80918 |
| 2020年05月15日 00:37:35 | vstinner | set | components: + Subinterpreters, - Interpreter Core |
| 2019年05月10日 17:30:26 | eric.snow | set | status: open -> closed assignee: eric.snow resolution: fixed stage: patch review -> resolved |
| 2019年05月10日 17:29:57 | eric.snow | set | messages: + msg342083 |
| 2019年05月07日 16:15:40 | eric.snow | set | keywords:
+ patch stage: needs patch -> patch review pull_requests: + pull_request13078 |
| 2019年04月27日 15:05:15 | eric.snow | set | messages: + msg340988 |
| 2019年04月27日 14:39:55 | steve.dower | set | messages: + msg340987 |
| 2019年04月26日 22:28:58 | eric.snow | create | |