Skip to content

[WIP] bpo-29672: Save and restore module warning registries in catch_warnings #8232

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Include/internal/pycore_global_strings.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ struct _Py_global_strings {
STRUCT_FOR_ID(_initializing)
STRUCT_FOR_ID(_is_text_encoding)
STRUCT_FOR_ID(_lock_unlock_module)
STRUCT_FOR_ID(_registrycleared)
STRUCT_FOR_ID(_showwarnmsg)
STRUCT_FOR_ID(_shutdown)
STRUCT_FOR_ID(_slotnames)
Expand Down
1 change: 1 addition & 0 deletions Include/internal/pycore_runtime_init.h
Original file line number Diff line number Diff line change
Expand Up @@ -819,6 +819,7 @@ extern "C" {
INIT_ID(_initializing), \
INIT_ID(_is_text_encoding), \
INIT_ID(_lock_unlock_module), \
INIT_ID(_registrycleared), \
INIT_ID(_showwarnmsg), \
INIT_ID(_shutdown), \
INIT_ID(_slotnames), \
Expand Down
9 changes: 9 additions & 0 deletions Lib/test/test_warnings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1125,6 +1125,15 @@ def test_check_warnings(self):
with warnings_helper.check_warnings(('foo', RuntimeWarning)):
wmod.warn("foo")

def test_check_warnings_restore_registries(self):
global __warningregistry__
wmod = self.module
orig_registry = __warningregistry__ = {}
with wmod.catch_warnings(module=wmod):
wmod.warn("foo")
assert len(__warningregistry__) != 0
assert len(__warningregistry__) == 0

class CCatchWarningTests(CatchWarningTests, unittest.TestCase):
module = c_warnings

Expand Down
26 changes: 23 additions & 3 deletions Lib/warnings.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ def _formatwarnmsg(msg):
msg.filename, msg.lineno, msg.line)
return _formatwarnmsg_impl(msg)

def _registrycleared(registry):
"""Hook that notifies when a module warning registry is cleared."""

def filterwarnings(action, message="", category=Warning, module="", lineno=0,
append=False):
"""Insert an entry into the list of warnings filters (at the front).
Expand Down Expand Up @@ -335,6 +338,7 @@ def warn_explicit(message, category, filename, lineno,
if registry is None:
registry = {}
if registry.get('version', 0) != _filters_version:
_registrycleared(registry)
registry.clear()
registry['version'] = _filters_version
if isinstance(message, Warning):
Expand Down Expand Up @@ -445,6 +449,7 @@ def __init__(self, *, record=False, module=None):
self._record = record
self._module = sys.modules['warnings'] if module is None else module
self._entered = False
self._old_registries = []

def __repr__(self):
args = []
Expand All @@ -461,7 +466,9 @@ def __enter__(self):
self._entered = True
self._filters = self._module.filters
self._module.filters = self._filters[:]
self._module._filters_mutated()
self._orig_registrycleared = self._module._registrycleared
self._module._registrycleared = self._registrycleared
self._filters_version = self._module._filters_mutated()
self._showwarning = self._module.showwarning
self._showwarnmsg_impl = self._module._showwarnmsg_impl
if self._record:
Expand All @@ -478,10 +485,17 @@ def __exit__(self, *exc_info):
if not self._entered:
raise RuntimeError("Cannot exit %r without entering first" % self)
self._module.filters = self._filters
self._module._filters_mutated()
self._module._registrycleared = self._orig_registrycleared
self._module._set_filters_version(self._filters_version)
for registry, registry_copy in self._old_registries:
registry.clear()
registry.update(registry_copy)
self._module.showwarning = self._showwarning
self._module._showwarnmsg_impl = self._showwarnmsg_impl

def _registrycleared(self, registry):
self._old_registries.append((registry, registry.copy()))


# Private utility function called by _PyErr_WarnUnawaitedCoroutine
def _warn_unawaited_coroutine(coro):
Expand Down Expand Up @@ -516,7 +530,8 @@ def extract():
# If either if the compiled regexs are None, match anything.
try:
from _warnings import (filters, _defaultaction, _onceregistry,
warn, warn_explicit, _filters_mutated)
warn, warn_explicit, _filters_mutated,
_set_filters_version)
defaultaction = _defaultaction
onceregistry = _onceregistry
_warnings_defaults = True
Expand All @@ -529,7 +544,12 @@ def extract():

def _filters_mutated():
global _filters_version
old_filters_version = _filters_version
_filters_version += 1
return old_filters_version

def _set_filters_version(filters_version):
_filters_version = filters_version

_warnings_defaults = False

Expand Down
58 changes: 57 additions & 1 deletion Python/_warnings.c
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,39 @@ get_filter(PyInterpreterState *interp, PyObject *category,
}


static int
call_registrycleared(PyInterpreterState *interp, PyObject *registry)
{
PyObject *_registrycleared, *res;

_registrycleared = GET_WARNINGS_ATTR(interp, _registrycleared, 0);
if (_registrycleared == NULL) {
if (PyErr_Occurred())
return -1;
return 0;
}

if (!PyCallable_Check(_registrycleared)) {
PyErr_SetString(PyExc_TypeError,
"warnings._registrycleared() must be set to a callable");
goto error;
}

res = PyObject_CallFunctionObjArgs(_registrycleared, registry, NULL);
Py_DECREF(_registrycleared);

if (res == NULL);
return -1;

Py_DECREF(res);
return 0;

error:
Py_XDECREF(_registrycleared);
return -1;
}


static int
already_warned(PyInterpreterState *interp, PyObject *registry, PyObject *key,
int should_set)
Expand All @@ -413,6 +446,7 @@ already_warned(PyInterpreterState *interp, PyObject *registry, PyObject *key,
if (PyErr_Occurred()) {
return -1;
}
call_registrycleared(interp, registry);
PyDict_Clear(registry);
version_obj = PyLong_FromLong(st->filters_version);
if (version_obj == NULL)
Expand Down Expand Up @@ -1107,7 +1141,27 @@ warnings_filters_mutated(PyObject *self, PyObject *args)
if (st == NULL) {
return NULL;
}
st->filters_version++;
return PyLong_FromLong(st->filters_version++);
}

static PyObject *
warnings_set_filters_version(PyObject *self, PyObject *args)
{
long filters_version;

if (!PyArg_ParseTuple(args, "l:_set_filters_version", &filters_version)) {
return NULL;
}

PyInterpreterState *interp = get_current_interp();
if (interp == NULL) {
return NULL;
}
WarningsState *st = warnings_get_state(interp);
if (st == NULL) {
return NULL;
}
st->filters_version = filters_version;
Py_RETURN_NONE;
}

Expand Down Expand Up @@ -1376,6 +1430,8 @@ static PyMethodDef warnings_functions[] = {
METH_VARARGS | METH_KEYWORDS, warn_explicit_doc},
{"_filters_mutated", (PyCFunction)warnings_filters_mutated, METH_NOARGS,
NULL},
{"_set_filters_version", (PyCFunction)warnings_set_filters_version,
METH_VARARGS, NULL},
/* XXX(brett.cannon): add showwarning? */
/* XXX(brett.cannon): Reasonable to add formatwarning? */
{NULL, NULL} /* sentinel */
Expand Down
1 change: 1 addition & 0 deletions Tools/scripts/generate_global_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

# from GET_WARNINGS_ATTR() in Python/_warnings.c
'WarningMessage',
'_registrycleared',
'_showwarnmsg',
'_warn_unawaited_coroutine',
'defaultaction',
Expand Down