Skip to content

Commit

Permalink
pythongh-97841: Add methoddef for _filters_mutated (pythongh-98115)
Browse files Browse the repository at this point in the history
  • Loading branch information
corona10 authored Oct 9, 2022
1 parent 2d2e01a commit a04656e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
11 changes: 8 additions & 3 deletions Python/_warnings.c
Original file line number Diff line number Diff line change
Expand Up @@ -1086,8 +1086,14 @@ warnings_warn_explicit_impl(PyObject *module, PyObject *message,
return returned;
}

/*[clinic input]
_filters_mutated as warnings_filters_mutated
[clinic start generated code]*/

static PyObject *
warnings_filters_mutated(PyObject *self, PyObject *Py_UNUSED(args))
warnings_filters_mutated_impl(PyObject *module)
/*[clinic end generated code: output=8ce517abd12b88f4 input=35ecbf08ee2491b2]*/
{
PyInterpreterState *interp = get_current_interp();
if (interp == NULL) {
Expand Down Expand Up @@ -1344,8 +1350,7 @@ _PyErr_WarnUnawaitedCoroutine(PyObject *coro)
static PyMethodDef warnings_functions[] = {
WARNINGS_WARN_METHODDEF
WARNINGS_WARN_EXPLICIT_METHODDEF
{"_filters_mutated", _PyCFunction_CAST(warnings_filters_mutated), METH_NOARGS,
NULL},
WARNINGS_FILTERS_MUTATED_METHODDEF
/* XXX(brett.cannon): add showwarning? */
/* XXX(brett.cannon): Reasonable to add formatwarning? */
{NULL, NULL} /* sentinel */
Expand Down
19 changes: 18 additions & 1 deletion Python/clinic/_warnings.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a04656e

Please sign in to comment.