with self.assertRaises(TypeError):
wmod.warn_explicit('foo', Warning, 'bar', 1, registry=None)
+ @support.cpython_only
+ def test_issue31416(self):
+ # warn_explicit() shouldn't cause an assertion failure in case of a
+ # bad warnings.filters or warnings.defaultaction.
+ wmod = self.module
+ with original_warnings.catch_warnings(module=wmod):
+ wmod.filters = [(None, None, Warning, None, 0)]
+ with self.assertRaises(TypeError):
+ wmod.warn_explicit('foo', Warning, 'bar', 1)
+
+ wmod.filters = []
+ with support.swap_attr(wmod, 'defaultaction', None), \
+ self.assertRaises(TypeError):
+ wmod.warn_explicit('foo', Warning, 'bar', 1)
+
class WarningsDisplayTests(BaseTest):
}
return _PyRuntime.warnings.default_action;
}
-
+ if (!PyUnicode_Check(default_action)) {
+ PyErr_Format(PyExc_TypeError,
+ MODULE_NAME ".defaultaction must be a string, "
+ "not '%.200s'",
+ Py_TYPE(default_action)->tp_name);
+ Py_DECREF(default_action);
+ return NULL;
+ }
Py_DECREF(_PyRuntime.warnings.default_action);
_PyRuntime.warnings.default_action = default_action;
return default_action;
mod = PyTuple_GET_ITEM(tmp_item, 3);
ln_obj = PyTuple_GET_ITEM(tmp_item, 4);
+ if (!PyUnicode_Check(action)) {
+ PyErr_Format(PyExc_TypeError,
+ "action must be a string, not '%.200s'",
+ Py_TYPE(action)->tp_name);
+ Py_DECREF(tmp_item);
+ return NULL;
+ }
+
good_msg = check_matched(msg, text);
if (good_msg == -1) {
Py_DECREF(tmp_item);
return action;
}
- PyErr_SetString(PyExc_ValueError,
- MODULE_NAME ".defaultaction not found");
return NULL;
}