Issue 36737: Warnings operate out of global runtime state. (original) (raw)

Issue36737

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 -> closedassignee: eric.snowresolution: fixedstage: patch review -> resolved
2019-05-10 17:29:57 eric.snow set messages: +
2019-05-07 16:15:40 eric.snow set keywords: + patchstage: needs patch -> patch reviewpull_requests: + <pull%5Frequest13078>
2019-04-27 15:05:15 eric.snow set messages: +
2019-04-27 14:39:55 steve.dower set messages: +
2019-04-26 22:28:58 eric.snow create