commit | cf0a64596ea067f244deb49fa40c402b176a7176 | [log] [tgz] |
---|---|---|
author | Henry Schreiner <HenrySchreinerIII@gmail.com> | Tue Aug 18 07:14:34 2020 -0400 |
committer | GitHub <noreply@github.com> | Tue Aug 18 07:14:34 2020 -0400 |
tree | 07706fe69e6e0501407b76f4b379ba82095c05c9 | |
parent | 7dd2bdb0b3374f14817b4625f26e865d9825c679 [diff] [blame] |
fix: throwing repr caused a segfault (#2389) * fix: throwing repr caused a segfault * fixup! ci: include Python 3.9 RC1 (#2387)
diff --git a/tests/test_exceptions.cpp b/tests/test_exceptions.cpp index 372d0ae..537819d 100644 --- a/tests/test_exceptions.cpp +++ b/tests/test_exceptions.cpp
@@ -218,4 +218,7 @@ } }); + // Test repr that cannot be displayed + m.def("simple_bool_passthrough", [](bool x) {return x;}); + }