summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/errors.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/Python/errors.c b/Python/errors.c
index 30be7fa..c55ebfd 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -1699,17 +1699,6 @@ format_unraisable(PyObject *obj, const char *format, ...)
}
void
-_PyErr_WriteUnraisableMsg(const char *err_msg_str, PyObject *obj)
-{
- if (err_msg_str) {
- format_unraisable(obj, "Exception ignored %s", err_msg_str);
- }
- else {
- format_unraisable(obj, NULL);
- }
-}
-
-void
PyErr_WriteUnraisable(PyObject *obj)
{
format_unraisable(obj, NULL);