Skip to content

Commit deb3cb2

Browse files
bluescarniwjakob
authored andcommitted
Add exception translation for std::overflow_error. (pybind#1977)
1 parent 55ff464 commit deb3cb2

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

docs/advanced/exceptions.rst

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ exceptions:
2828
+--------------------------------------+--------------------------------------+
2929
| :class:`std::range_error` | ``ValueError`` |
3030
+--------------------------------------+--------------------------------------+
31+
| :class:`std::overflow_error` | ``OverflowError`` |
32+
+--------------------------------------+--------------------------------------+
3133
| :class:`pybind11::stop_iteration` | ``StopIteration`` (used to implement |
3234
| | custom iterators) |
3335
+--------------------------------------+--------------------------------------+

include/pybind11/detail/internals.h

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ inline void translate_exception(std::exception_ptr p) {
211211
} catch (const std::length_error &e) { PyErr_SetString(PyExc_ValueError, e.what()); return;
212212
} catch (const std::out_of_range &e) { PyErr_SetString(PyExc_IndexError, e.what()); return;
213213
} catch (const std::range_error &e) { PyErr_SetString(PyExc_ValueError, e.what()); return;
214+
} catch (const std::overflow_error &e) { PyErr_SetString(PyExc_OverflowError, e.what()); return;
214215
} catch (const std::exception &e) { PyErr_SetString(PyExc_RuntimeError, e.what()); return;
215216
} catch (...) {
216217
PyErr_SetString(PyExc_RuntimeError, "Caught an unknown exception!");

tests/test_exceptions.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ TEST_SUBMODULE(exceptions, m) {
116116
m.def("throws5", []() { throw MyException5("this is a helper-defined translated exception"); });
117117
m.def("throws5_1", []() { throw MyException5_1("MyException5 subclass"); });
118118
m.def("throws_logic_error", []() { throw std::logic_error("this error should fall through to the standard handler"); });
119+
m.def("throws_overflow_error", []() {throw std::overflow_error(""); });
119120
m.def("exception_matches", []() {
120121
py::dict foo;
121122
try {

tests/test_exceptions.py

+4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ def test_custom(msg):
7979
m.throws_logic_error()
8080
assert msg(excinfo.value) == "this error should fall through to the standard handler"
8181

82+
# OverFlow error translation.
83+
with pytest.raises(OverflowError) as excinfo:
84+
m.throws_overflow_error()
85+
8286
# Can we handle a helper-declared exception?
8387
with pytest.raises(m.MyException5) as excinfo:
8488
m.throws5()

0 commit comments

Comments
 (0)