summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/markupsafe/_speedups.c3
-rw-r--r--tests/test_exception_custom_html.py21
2 files changed, 24 insertions, 0 deletions
diff --git a/src/markupsafe/_speedups.c b/src/markupsafe/_speedups.c
index 22a604d..b27435e 100644
--- a/src/markupsafe/_speedups.c
+++ b/src/markupsafe/_speedups.c
@@ -311,6 +311,9 @@ escape(PyObject *self, PyObject *text)
if (html) {
s = PyObject_CallObject(html, NULL);
Py_DECREF(html);
+ if (s == NULL) {
+ return NULL;
+ }
/* Convert to Markup object */
rv = PyObject_CallFunctionObjArgs(markup, (PyObject*)s, NULL);
Py_DECREF(s);
diff --git a/tests/test_exception_custom_html.py b/tests/test_exception_custom_html.py
new file mode 100644
index 0000000..5f9ffde
--- /dev/null
+++ b/tests/test_exception_custom_html.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+import pytest
+
+from markupsafe import escape
+
+
+class CustomHtmlThatRaises(object):
+ def __html__(self):
+ raise ValueError(123)
+
+
+def test_exception_custom_html():
+ """Checks whether exceptions in custom __html__ implementations are
+ propagated correctly.
+
+ There was a bug in the native implementation at some point:
+ https://github.com/pallets/markupsafe/issues/108
+ """
+ obj = CustomHtmlThatRaises()
+ with pytest.raises(ValueError):
+ escape(obj)