2016-10-16 17:12:43 +00:00
|
|
|
Exceptions
|
|
|
|
##########
|
|
|
|
|
2020-08-22 22:11:09 +00:00
|
|
|
Built-in C++ to Python exception translation
|
|
|
|
============================================
|
|
|
|
|
|
|
|
When Python calls C++ code through pybind11, pybind11 provides a C++ exception handler
|
|
|
|
that will trap C++ exceptions, translate them to the corresponding Python exception,
|
|
|
|
and raise them so that Python code can handle them.
|
2016-10-16 17:12:43 +00:00
|
|
|
|
2020-08-22 22:11:09 +00:00
|
|
|
pybind11 defines translations for ``std::exception`` and its standard
|
|
|
|
subclasses, and several special exception classes that translate to specific
|
|
|
|
Python exceptions. Note that these are not actually Python exceptions, so they
|
|
|
|
cannot be examined using the Python C API. Instead, they are pure C++ objects
|
|
|
|
that pybind11 will translate the corresponding Python exception when they arrive
|
|
|
|
at its exception handler.
|
2016-10-16 17:12:43 +00:00
|
|
|
|
|
|
|
.. tabularcolumns:: |p{0.5\textwidth}|p{0.45\textwidth}|
|
|
|
|
|
2018-03-11 23:15:56 +00:00
|
|
|
+--------------------------------------+--------------------------------------+
|
2020-08-22 22:11:09 +00:00
|
|
|
| Exception thrown by C++ | Translated to Python exception type |
|
2018-03-11 23:15:56 +00:00
|
|
|
+======================================+======================================+
|
|
|
|
| :class:`std::exception` | ``RuntimeError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`std::bad_alloc` | ``MemoryError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`std::domain_error` | ``ValueError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`std::invalid_argument` | ``ValueError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`std::length_error` | ``ValueError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
2019-06-11 20:47:37 +00:00
|
|
|
| :class:`std::out_of_range` | ``IndexError`` |
|
2018-03-11 23:15:56 +00:00
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`std::range_error` | ``ValueError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
2019-11-14 07:56:58 +00:00
|
|
|
| :class:`std::overflow_error` | ``OverflowError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
2018-03-11 23:15:56 +00:00
|
|
|
| :class:`pybind11::stop_iteration` | ``StopIteration`` (used to implement |
|
|
|
|
| | custom iterators) |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`pybind11::index_error` | ``IndexError`` (used to indicate out |
|
|
|
|
| | of bounds access in ``__getitem__``, |
|
|
|
|
| | ``__setitem__``, etc.) |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`pybind11::key_error` | ``KeyError`` (used to indicate out |
|
|
|
|
| | of bounds access in ``__getitem__``, |
|
|
|
|
| | ``__setitem__`` in dict-like |
|
|
|
|
| | objects, etc.) |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
2020-11-19 15:11:55 +00:00
|
|
|
| :class:`pybind11::value_error` | ``ValueError`` (used to indicate |
|
|
|
|
| | wrong value passed in |
|
|
|
|
| | ``container.remove(...)``) |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`pybind11::type_error` | ``TypeError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`pybind11::buffer_error` | ``BufferError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
2021-10-23 04:07:22 +00:00
|
|
|
| :class:`pybind11::import_error` | ``ImportError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| :class:`pybind11::attribute_error` | ``AttributeError`` |
|
2020-11-19 15:11:55 +00:00
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| Any other exception | ``RuntimeError`` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
2016-10-16 17:12:43 +00:00
|
|
|
|
2020-08-22 22:11:09 +00:00
|
|
|
Exception translation is not bidirectional. That is, *catching* the C++
|
2021-11-16 22:32:01 +00:00
|
|
|
exceptions defined above will not trap exceptions that originate from
|
2020-08-22 22:11:09 +00:00
|
|
|
Python. For that, catch :class:`pybind11::error_already_set`. See :ref:`below
|
|
|
|
<handling_python_exceptions_cpp>` for further details.
|
2016-10-16 17:12:43 +00:00
|
|
|
|
|
|
|
There is also a special exception :class:`cast_error` that is thrown by
|
|
|
|
:func:`handle::call` when the input arguments cannot be converted to Python
|
|
|
|
objects.
|
|
|
|
|
|
|
|
Registering custom translators
|
|
|
|
==============================
|
|
|
|
|
|
|
|
If the default exception conversion policy described above is insufficient,
|
|
|
|
pybind11 also provides support for registering custom exception translators.
|
2021-07-21 12:22:18 +00:00
|
|
|
Similar to pybind11 classes, exception translators can be local to the module
|
|
|
|
they are defined in or global to the entire python session. To register a simple
|
|
|
|
exception conversion that translates a C++ exception into a new Python exception
|
|
|
|
using the C++ exception's ``what()`` method, a helper function is available:
|
2016-10-16 17:12:43 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::register_exception<CppExp>(module, "PyExp");
|
|
|
|
|
|
|
|
This call creates a Python exception class with the name ``PyExp`` in the given
|
|
|
|
module and automatically converts any encountered exceptions of type ``CppExp``
|
|
|
|
into Python exceptions of type ``PyExp``.
|
|
|
|
|
2021-07-21 12:22:18 +00:00
|
|
|
A matching function is available for registering a local exception translator:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::register_local_exception<CppExp>(module, "PyExp");
|
|
|
|
|
|
|
|
|
2020-09-06 11:35:53 +00:00
|
|
|
It is possible to specify base class for the exception using the third
|
2021-10-08 12:38:04 +00:00
|
|
|
parameter, a ``handle``:
|
2020-09-06 11:35:53 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::register_exception<CppExp>(module, "PyExp", PyExc_RuntimeError);
|
2021-07-21 12:22:18 +00:00
|
|
|
py::register_local_exception<CppExp>(module, "PyExp", PyExc_RuntimeError);
|
2020-09-06 11:35:53 +00:00
|
|
|
|
2021-10-08 12:38:04 +00:00
|
|
|
Then ``PyExp`` can be caught both as ``PyExp`` and ``RuntimeError``.
|
2020-09-06 11:35:53 +00:00
|
|
|
|
|
|
|
The class objects of the built-in Python exceptions are listed in the Python
|
|
|
|
documentation on `Standard Exceptions <https://docs.python.org/3/c-api/exceptions.html#standard-exceptions>`_.
|
2021-10-08 12:38:04 +00:00
|
|
|
The default base class is ``PyExc_Exception``.
|
2020-09-06 11:35:53 +00:00
|
|
|
|
2021-07-21 12:22:18 +00:00
|
|
|
When more advanced exception translation is needed, the functions
|
|
|
|
``py::register_exception_translator(translator)`` and
|
|
|
|
``py::register_local_exception_translator(translator)`` can be used to register
|
2016-10-16 17:12:43 +00:00
|
|
|
functions that can translate arbitrary exception types (and which may include
|
2021-07-21 12:22:18 +00:00
|
|
|
additional logic to do so). The functions takes a stateless callable (e.g. a
|
2016-10-16 17:12:43 +00:00
|
|
|
function pointer or a lambda function without captured variables) with the call
|
|
|
|
signature ``void(std::exception_ptr)``.
|
|
|
|
|
|
|
|
When a C++ exception is thrown, the registered exception translators are tried
|
|
|
|
in reverse order of registration (i.e. the last registered translator gets the
|
2021-07-21 12:22:18 +00:00
|
|
|
first shot at handling the exception). All local translators will be tried
|
|
|
|
before a global translator is tried.
|
2016-10-16 17:12:43 +00:00
|
|
|
|
|
|
|
Inside the translator, ``std::rethrow_exception`` should be used within
|
|
|
|
a try block to re-throw the exception. One or more catch clauses to catch
|
|
|
|
the appropriate exceptions should then be used with each clause using
|
Add `py::set_error()`, use in updated `py::exception<>` documentation (#4772)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* static py::exception<> -> static py::handle
* Add `py::set_error()` but also try the suggestion of @malfet (https://github.com/pytorch/pytorch/pull/106401#pullrequestreview-1559961407).
* clang 17 compatibility fixes (#4767)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* Add gcc:13 C++20
* Add silkeh/clang:16-bullseye C++20
* chore(deps): update pre-commit hooks (#4770)
updates:
- [github.com/psf/black: 23.3.0 → 23.7.0](https://github.com/psf/black/compare/23.3.0...23.7.0)
- [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.276...v0.0.281)
- [github.com/asottile/blacken-docs: 1.14.0 → 1.15.0](https://github.com/asottile/blacken-docs/compare/1.14.0...1.15.0)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools (#4774)
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools
* Update docs/compiling.rst
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
* Provide better type hints for a variety of generic types (#4259)
* Provide better type hints for a variety of generic types
* Makes better documentation
* tuple, dict, list, set, function
* Move to py::typing
* style: pre-commit fixes
* Update copyright line with correct year and actual author. The author information was copy-pasted from the git log output.
---------
Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Use `py::set_error()` everywhere possible (only one special case, in common.h).
Overload `py::set_error(py::handle, py::handle)`.
Change back to `static py::handle exc = ... .release();`
Deprecate `py::exception<>::operator()`
* Add `PYBIND11_WARNING_DISABLE` for INTEL and MSVC (and sort alphabetically).
* `PYBIND11_WARNING_DISABLE_INTEL(10441)` does not work.
For ICC only, falling back to the recommended `py::set_error()` to keep the testing simple.
It is troublesome to add `--diag-disable=10441` specifically for test_exceptions.cpp, even that is non-ideal because it covers the entire file, not just the one line we need it for, and the value of exercising the trivial deprecated `operator()` on this one extra platform is practically zero.
* Fix silly oversight.
* NVHPC 23.5.0 generates deprecation warnings. They are currently not treated as errors, but falling back to using `py::set_error()` to not have to deal with that distraction.
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Keto D. Zhang <keto.zhang@gmail.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Co-authored-by: Dustin Spicuzza <dustin@virtualroadside.com>
2023-08-08 03:48:20 +00:00
|
|
|
``py::set_error()`` (see below).
|
2016-10-16 17:12:43 +00:00
|
|
|
|
|
|
|
To declare a custom Python exception type, declare a ``py::exception`` variable
|
|
|
|
and use this in the associated exception translator (note: it is often useful
|
|
|
|
to make this a static declaration when using it inside a lambda expression
|
|
|
|
without requiring capturing).
|
|
|
|
|
|
|
|
The following example demonstrates this for a hypothetical exception classes
|
|
|
|
``MyCustomException`` and ``OtherException``: the first is translated to a
|
|
|
|
custom python exception ``MyCustomError``, while the second is translated to a
|
|
|
|
standard python RuntimeError:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
Add pybind11/gil_safe_call_once.h (to fix deadlocks in pybind11/numpy.h) (#4877)
* LazyInitializeAtLeastOnceDestroyNever v1
* Go back to using `union` as originally suggested by jbms@. The trick (also suggested by jbms@) is to add empty ctor + dtor.
* Revert "Go back to using `union` as originally suggested by jbms@. The trick (also suggested by jbms@) is to add empty ctor + dtor."
This reverts commit e7b8c4f0fcd72191e88d1c17abf5da08fe3a9c6f.
* Remove `#include <stdalign.h>`
* `include\pybind11/numpy.h(24,10): fatal error C1083: Cannot open include file: 'stdalign.h': No such file or directory`
* @tkoeppe wrote: this is a C interop header (and we're not writing C)
* Suppress gcc 4.8.5 (CentOS 7) warning.
```
include/pybind11/eigen/../numpy.h:63:53: error: dereferencing type-punned pointer will break strict-aliasing rules [-Werror=strict-aliasing]
return *reinterpret_cast<T *>(value_storage_);
^
```
* Replace comments:
Document PRECONDITION.
Adopt comment suggested by @tkoeppe: https://github.com/pybind/pybind11/pull/4877#discussion_r1350356093
* Adopt suggestion by @tkoeppe:
* https://github.com/pybind/pybind11/pull/4877#issuecomment-1752969127
* https://godbolt.org/z/Wa79nKz6e
* Add `PYBIND11_CONSTINIT`, but it does not work for the current use cases:
```
g++ -o pybind11/tests/test_numpy_array.os -c -std=c++20 -fPIC -fvisibility=hidden -O0 -g -Wall -Wextra -Wconversion -Wcast-qual -Wdeprecated -Wundef -Wnon-virtual-dtor -Wunused-result -Werror -isystem /usr/include/python3.11 -isystem /usr/include/eigen3 -DPYBIND11_STRICT_ASSERTS_CLASS_HOLDER_VS_TYPE_CASTER_MIX -DPYBIND11_ENABLE_TYPE_CASTER_ODR_GUARD_IF_AVAILABLE -DPYBIND11_TEST_BOOST -Ipybind11/include -I/usr/local/google/home/rwgk/forked/pybind11/include -I/usr/local/google/home/rwgk/clone/pybind11/include /usr/local/google/home/rwgk/forked/pybind11/tests/test_numpy_array.cpp
```
```
In file included from /usr/local/google/home/rwgk/forked/pybind11/tests/test_numpy_array.cpp:10:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h: In static member function ‘static pybind11::detail::npy_api& pybind11::detail::npy_api::get()’:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h:258:82: error: ‘constinit’ variable ‘api_init’ does not have a constant initializer
258 | PYBIND11_CONSTINIT static LazyInitializeAtLeastOnceDestroyNever<npy_api> api_init;
| ^~~~~~~~
```
```
In file included from /usr/local/google/home/rwgk/forked/pybind11/tests/test_numpy_array.cpp:10:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h: In static member function ‘static pybind11::object& pybind11::dtype::_dtype_from_pep3118()’:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h:697:13: error: ‘constinit’ variable ‘imported_obj’ does not have a constant initializer
697 | imported_obj;
| ^~~~~~~~~~~~
```
* Revert "Add `PYBIND11_CONSTINIT`, but it does not work for the current use cases:"
This reverts commit f07b28bda9f91fb723aa898a21c81b6dd6857072.
* Reapply "Add `PYBIND11_CONSTINIT`, but it does not work for the current use cases:"
This reverts commit 36be645758aa82b576d24003808386bec6e55bf9.
* Add Default Member Initializer on `value_storage_` as suggested by @tkoeppe:
https://github.com/pybind/pybind11/pull/4877#issuecomment-1753201342
This fixes the errors reported under commit f07b28bda9f91fb723aa898a21c81b6dd6857072.
* Fix copy-paste-missed-a-change mishap in commit 88cec1152ab5576db19bab95c484672f06f5989a.
* Semi-paranoid placement new (based on https://github.com/pybind/pybind11/pull/4877#discussion_r1350573114).
* Move PYBIND11_CONSTINIT to detail/common.h
* Move code to the right places, rename new class and some variables.
* Fix oversight: update tests/extra_python_package/test_files.py
* Get the name right first.
* Use `std::call_once`, `std::atomic`, following a pattern developed by @tkoeppe
* Make the API more self-documenting (and possibly more easily reusable).
* google-clang-tidy IWYU fixes
* Rewrite comment as suggested by @tkoeppe
* Update test_exceptions.cpp and exceptions.rst
* Fix oversight in previous commit: add `PYBIND11_CONSTINIT`
* Make `get_stored()` non-const for simplicity.
As suggested by @tkoeppe: not seeing any reasonable use in which `get_stored` has to be const.
* Add comment regarding `KeyboardInterrupt` behavior, based heavily on information provided by @jbms.
* Add `assert(PyGILState_Check())` in `gil_scoped_release` ctor (simple & non-simple implementation) as suggested by @EthanSteinberg.
* Fix oversight in previous commit (missing include cassert).
* Remove use of std::atomic, leaving comments with rationale, why it is not needed.
* Rewrite comment re `std:optional` based on deeper reflection (aka 2nd thoughts).
* Additional comment with the conclusion of a discussion under PR #4877.
* https://github.com/pybind/pybind11/pull/4877#issuecomment-1757363179
* Small comment changes suggested by @tkoeppe.
2023-10-12 04:05:31 +00:00
|
|
|
PYBIND11_CONSTINIT static py::gil_safe_call_once_and_store<py::object> exc_storage;
|
|
|
|
exc_storage.call_once_and_store_result(
|
|
|
|
[&]() { return py::exception<MyCustomException>(m, "MyCustomError"); });
|
2016-10-16 17:12:43 +00:00
|
|
|
py::register_exception_translator([](std::exception_ptr p) {
|
|
|
|
try {
|
|
|
|
if (p) std::rethrow_exception(p);
|
|
|
|
} catch (const MyCustomException &e) {
|
Add pybind11/gil_safe_call_once.h (to fix deadlocks in pybind11/numpy.h) (#4877)
* LazyInitializeAtLeastOnceDestroyNever v1
* Go back to using `union` as originally suggested by jbms@. The trick (also suggested by jbms@) is to add empty ctor + dtor.
* Revert "Go back to using `union` as originally suggested by jbms@. The trick (also suggested by jbms@) is to add empty ctor + dtor."
This reverts commit e7b8c4f0fcd72191e88d1c17abf5da08fe3a9c6f.
* Remove `#include <stdalign.h>`
* `include\pybind11/numpy.h(24,10): fatal error C1083: Cannot open include file: 'stdalign.h': No such file or directory`
* @tkoeppe wrote: this is a C interop header (and we're not writing C)
* Suppress gcc 4.8.5 (CentOS 7) warning.
```
include/pybind11/eigen/../numpy.h:63:53: error: dereferencing type-punned pointer will break strict-aliasing rules [-Werror=strict-aliasing]
return *reinterpret_cast<T *>(value_storage_);
^
```
* Replace comments:
Document PRECONDITION.
Adopt comment suggested by @tkoeppe: https://github.com/pybind/pybind11/pull/4877#discussion_r1350356093
* Adopt suggestion by @tkoeppe:
* https://github.com/pybind/pybind11/pull/4877#issuecomment-1752969127
* https://godbolt.org/z/Wa79nKz6e
* Add `PYBIND11_CONSTINIT`, but it does not work for the current use cases:
```
g++ -o pybind11/tests/test_numpy_array.os -c -std=c++20 -fPIC -fvisibility=hidden -O0 -g -Wall -Wextra -Wconversion -Wcast-qual -Wdeprecated -Wundef -Wnon-virtual-dtor -Wunused-result -Werror -isystem /usr/include/python3.11 -isystem /usr/include/eigen3 -DPYBIND11_STRICT_ASSERTS_CLASS_HOLDER_VS_TYPE_CASTER_MIX -DPYBIND11_ENABLE_TYPE_CASTER_ODR_GUARD_IF_AVAILABLE -DPYBIND11_TEST_BOOST -Ipybind11/include -I/usr/local/google/home/rwgk/forked/pybind11/include -I/usr/local/google/home/rwgk/clone/pybind11/include /usr/local/google/home/rwgk/forked/pybind11/tests/test_numpy_array.cpp
```
```
In file included from /usr/local/google/home/rwgk/forked/pybind11/tests/test_numpy_array.cpp:10:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h: In static member function ‘static pybind11::detail::npy_api& pybind11::detail::npy_api::get()’:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h:258:82: error: ‘constinit’ variable ‘api_init’ does not have a constant initializer
258 | PYBIND11_CONSTINIT static LazyInitializeAtLeastOnceDestroyNever<npy_api> api_init;
| ^~~~~~~~
```
```
In file included from /usr/local/google/home/rwgk/forked/pybind11/tests/test_numpy_array.cpp:10:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h: In static member function ‘static pybind11::object& pybind11::dtype::_dtype_from_pep3118()’:
/usr/local/google/home/rwgk/forked/pybind11/include/pybind11/numpy.h:697:13: error: ‘constinit’ variable ‘imported_obj’ does not have a constant initializer
697 | imported_obj;
| ^~~~~~~~~~~~
```
* Revert "Add `PYBIND11_CONSTINIT`, but it does not work for the current use cases:"
This reverts commit f07b28bda9f91fb723aa898a21c81b6dd6857072.
* Reapply "Add `PYBIND11_CONSTINIT`, but it does not work for the current use cases:"
This reverts commit 36be645758aa82b576d24003808386bec6e55bf9.
* Add Default Member Initializer on `value_storage_` as suggested by @tkoeppe:
https://github.com/pybind/pybind11/pull/4877#issuecomment-1753201342
This fixes the errors reported under commit f07b28bda9f91fb723aa898a21c81b6dd6857072.
* Fix copy-paste-missed-a-change mishap in commit 88cec1152ab5576db19bab95c484672f06f5989a.
* Semi-paranoid placement new (based on https://github.com/pybind/pybind11/pull/4877#discussion_r1350573114).
* Move PYBIND11_CONSTINIT to detail/common.h
* Move code to the right places, rename new class and some variables.
* Fix oversight: update tests/extra_python_package/test_files.py
* Get the name right first.
* Use `std::call_once`, `std::atomic`, following a pattern developed by @tkoeppe
* Make the API more self-documenting (and possibly more easily reusable).
* google-clang-tidy IWYU fixes
* Rewrite comment as suggested by @tkoeppe
* Update test_exceptions.cpp and exceptions.rst
* Fix oversight in previous commit: add `PYBIND11_CONSTINIT`
* Make `get_stored()` non-const for simplicity.
As suggested by @tkoeppe: not seeing any reasonable use in which `get_stored` has to be const.
* Add comment regarding `KeyboardInterrupt` behavior, based heavily on information provided by @jbms.
* Add `assert(PyGILState_Check())` in `gil_scoped_release` ctor (simple & non-simple implementation) as suggested by @EthanSteinberg.
* Fix oversight in previous commit (missing include cassert).
* Remove use of std::atomic, leaving comments with rationale, why it is not needed.
* Rewrite comment re `std:optional` based on deeper reflection (aka 2nd thoughts).
* Additional comment with the conclusion of a discussion under PR #4877.
* https://github.com/pybind/pybind11/pull/4877#issuecomment-1757363179
* Small comment changes suggested by @tkoeppe.
2023-10-12 04:05:31 +00:00
|
|
|
py::set_error(exc_storage.get_stored(), e.what());
|
2016-10-16 17:12:43 +00:00
|
|
|
} catch (const OtherException &e) {
|
Add `py::set_error()`, use in updated `py::exception<>` documentation (#4772)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* static py::exception<> -> static py::handle
* Add `py::set_error()` but also try the suggestion of @malfet (https://github.com/pytorch/pytorch/pull/106401#pullrequestreview-1559961407).
* clang 17 compatibility fixes (#4767)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* Add gcc:13 C++20
* Add silkeh/clang:16-bullseye C++20
* chore(deps): update pre-commit hooks (#4770)
updates:
- [github.com/psf/black: 23.3.0 → 23.7.0](https://github.com/psf/black/compare/23.3.0...23.7.0)
- [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.276...v0.0.281)
- [github.com/asottile/blacken-docs: 1.14.0 → 1.15.0](https://github.com/asottile/blacken-docs/compare/1.14.0...1.15.0)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools (#4774)
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools
* Update docs/compiling.rst
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
* Provide better type hints for a variety of generic types (#4259)
* Provide better type hints for a variety of generic types
* Makes better documentation
* tuple, dict, list, set, function
* Move to py::typing
* style: pre-commit fixes
* Update copyright line with correct year and actual author. The author information was copy-pasted from the git log output.
---------
Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Use `py::set_error()` everywhere possible (only one special case, in common.h).
Overload `py::set_error(py::handle, py::handle)`.
Change back to `static py::handle exc = ... .release();`
Deprecate `py::exception<>::operator()`
* Add `PYBIND11_WARNING_DISABLE` for INTEL and MSVC (and sort alphabetically).
* `PYBIND11_WARNING_DISABLE_INTEL(10441)` does not work.
For ICC only, falling back to the recommended `py::set_error()` to keep the testing simple.
It is troublesome to add `--diag-disable=10441` specifically for test_exceptions.cpp, even that is non-ideal because it covers the entire file, not just the one line we need it for, and the value of exercising the trivial deprecated `operator()` on this one extra platform is practically zero.
* Fix silly oversight.
* NVHPC 23.5.0 generates deprecation warnings. They are currently not treated as errors, but falling back to using `py::set_error()` to not have to deal with that distraction.
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Keto D. Zhang <keto.zhang@gmail.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Co-authored-by: Dustin Spicuzza <dustin@virtualroadside.com>
2023-08-08 03:48:20 +00:00
|
|
|
py::set_error(PyExc_RuntimeError, e.what());
|
2016-10-16 17:12:43 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Multiple exceptions can be handled by a single translator, as shown in the
|
|
|
|
example above. If the exception is not caught by the current translator, the
|
|
|
|
previously registered one gets a chance.
|
|
|
|
|
|
|
|
If none of the registered exception translators is able to handle the
|
|
|
|
exception, it is handled by the default converter as described in the previous
|
|
|
|
section.
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
The file :file:`tests/test_exceptions.cpp` contains examples
|
|
|
|
of various custom exception translators and custom exception types.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
Add `py::set_error()`, use in updated `py::exception<>` documentation (#4772)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* static py::exception<> -> static py::handle
* Add `py::set_error()` but also try the suggestion of @malfet (https://github.com/pytorch/pytorch/pull/106401#pullrequestreview-1559961407).
* clang 17 compatibility fixes (#4767)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* Add gcc:13 C++20
* Add silkeh/clang:16-bullseye C++20
* chore(deps): update pre-commit hooks (#4770)
updates:
- [github.com/psf/black: 23.3.0 → 23.7.0](https://github.com/psf/black/compare/23.3.0...23.7.0)
- [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.276...v0.0.281)
- [github.com/asottile/blacken-docs: 1.14.0 → 1.15.0](https://github.com/asottile/blacken-docs/compare/1.14.0...1.15.0)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools (#4774)
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools
* Update docs/compiling.rst
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
* Provide better type hints for a variety of generic types (#4259)
* Provide better type hints for a variety of generic types
* Makes better documentation
* tuple, dict, list, set, function
* Move to py::typing
* style: pre-commit fixes
* Update copyright line with correct year and actual author. The author information was copy-pasted from the git log output.
---------
Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Use `py::set_error()` everywhere possible (only one special case, in common.h).
Overload `py::set_error(py::handle, py::handle)`.
Change back to `static py::handle exc = ... .release();`
Deprecate `py::exception<>::operator()`
* Add `PYBIND11_WARNING_DISABLE` for INTEL and MSVC (and sort alphabetically).
* `PYBIND11_WARNING_DISABLE_INTEL(10441)` does not work.
For ICC only, falling back to the recommended `py::set_error()` to keep the testing simple.
It is troublesome to add `--diag-disable=10441` specifically for test_exceptions.cpp, even that is non-ideal because it covers the entire file, not just the one line we need it for, and the value of exercising the trivial deprecated `operator()` on this one extra platform is practically zero.
* Fix silly oversight.
* NVHPC 23.5.0 generates deprecation warnings. They are currently not treated as errors, but falling back to using `py::set_error()` to not have to deal with that distraction.
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Keto D. Zhang <keto.zhang@gmail.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Co-authored-by: Dustin Spicuzza <dustin@virtualroadside.com>
2023-08-08 03:48:20 +00:00
|
|
|
Call ``py::set_error()`` for every exception caught in a custom exception
|
2016-10-16 17:12:43 +00:00
|
|
|
translator. Failure to do so will cause Python to crash with ``SystemError:
|
|
|
|
error return without exception set``.
|
|
|
|
|
|
|
|
Exceptions that you do not plan to handle should simply not be caught, or
|
2018-01-09 17:30:19 +00:00
|
|
|
may be explicitly (re-)thrown to delegate it to the other,
|
2016-10-16 17:12:43 +00:00
|
|
|
previously-declared existing exception translators.
|
2020-08-08 10:07:14 +00:00
|
|
|
|
fix: define (non-empty) `PYBIND11_EXPORT_EXCEPTION` only under macOS. (#4298)
Background: #2999, #4105, #4283, #4284
In a nutshell:
* Only macOS actually needs `PYBIND11_EXPORT_EXCEPTION` (#4284).
* Evidently (#4283), under macOS `PYBIND11_EXPORT_EXCEPTION` does not run the risk of introducing ODR violations,
* but evidently (#4283) under Linux it does, in the presumably rare/unusual situation that `RTLD_GLOBAL` is used.
* Windows does no have the equivalent of `RTLD_GLOBAL`, therefore `PYBIND11_EXPORT_EXCEPTION` has no practical benefit, on the contrary, noisy warning suppression pragmas are needed, therefore it is best left empty.
2022-10-31 17:36:26 +00:00
|
|
|
Note that ``libc++`` and ``libstdc++`` `behave differently under macOS
|
|
|
|
<https://stackoverflow.com/questions/19496643/using-clang-fvisibility-hidden-and-typeinfo-and-type-erasure/28827430>`_
|
|
|
|
with ``-fvisibility=hidden``. Therefore exceptions that are used across ABI
|
|
|
|
boundaries need to be explicitly exported, as exercised in
|
|
|
|
``tests/test_exceptions.h``. See also:
|
|
|
|
"Problems with C++ exceptions" under `GCC Wiki <https://gcc.gnu.org/wiki/Visibility>`_.
|
2021-05-27 15:00:18 +00:00
|
|
|
|
2021-07-21 12:22:18 +00:00
|
|
|
|
|
|
|
Local vs Global Exception Translators
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
When a global exception translator is registered, it will be applied across all
|
|
|
|
modules in the reverse order of registration. This can create behavior where the
|
|
|
|
order of module import influences how exceptions are translated.
|
|
|
|
|
|
|
|
If module1 has the following translator:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::register_exception_translator([](std::exception_ptr p) {
|
|
|
|
try {
|
|
|
|
if (p) std::rethrow_exception(p);
|
|
|
|
} catch (const std::invalid_argument &e) {
|
Add `py::set_error()`, use in updated `py::exception<>` documentation (#4772)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* static py::exception<> -> static py::handle
* Add `py::set_error()` but also try the suggestion of @malfet (https://github.com/pytorch/pytorch/pull/106401#pullrequestreview-1559961407).
* clang 17 compatibility fixes (#4767)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* Add gcc:13 C++20
* Add silkeh/clang:16-bullseye C++20
* chore(deps): update pre-commit hooks (#4770)
updates:
- [github.com/psf/black: 23.3.0 → 23.7.0](https://github.com/psf/black/compare/23.3.0...23.7.0)
- [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.276...v0.0.281)
- [github.com/asottile/blacken-docs: 1.14.0 → 1.15.0](https://github.com/asottile/blacken-docs/compare/1.14.0...1.15.0)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools (#4774)
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools
* Update docs/compiling.rst
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
* Provide better type hints for a variety of generic types (#4259)
* Provide better type hints for a variety of generic types
* Makes better documentation
* tuple, dict, list, set, function
* Move to py::typing
* style: pre-commit fixes
* Update copyright line with correct year and actual author. The author information was copy-pasted from the git log output.
---------
Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Use `py::set_error()` everywhere possible (only one special case, in common.h).
Overload `py::set_error(py::handle, py::handle)`.
Change back to `static py::handle exc = ... .release();`
Deprecate `py::exception<>::operator()`
* Add `PYBIND11_WARNING_DISABLE` for INTEL and MSVC (and sort alphabetically).
* `PYBIND11_WARNING_DISABLE_INTEL(10441)` does not work.
For ICC only, falling back to the recommended `py::set_error()` to keep the testing simple.
It is troublesome to add `--diag-disable=10441` specifically for test_exceptions.cpp, even that is non-ideal because it covers the entire file, not just the one line we need it for, and the value of exercising the trivial deprecated `operator()` on this one extra platform is practically zero.
* Fix silly oversight.
* NVHPC 23.5.0 generates deprecation warnings. They are currently not treated as errors, but falling back to using `py::set_error()` to not have to deal with that distraction.
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Keto D. Zhang <keto.zhang@gmail.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Co-authored-by: Dustin Spicuzza <dustin@virtualroadside.com>
2023-08-08 03:48:20 +00:00
|
|
|
py::set_error(PyExc_ArgumentError, "module1 handled this");
|
2021-07-21 12:22:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
and module2 has the following similar translator:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
py::register_exception_translator([](std::exception_ptr p) {
|
|
|
|
try {
|
|
|
|
if (p) std::rethrow_exception(p);
|
|
|
|
} catch (const std::invalid_argument &e) {
|
Add `py::set_error()`, use in updated `py::exception<>` documentation (#4772)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* static py::exception<> -> static py::handle
* Add `py::set_error()` but also try the suggestion of @malfet (https://github.com/pytorch/pytorch/pull/106401#pullrequestreview-1559961407).
* clang 17 compatibility fixes (#4767)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* Add gcc:13 C++20
* Add silkeh/clang:16-bullseye C++20
* chore(deps): update pre-commit hooks (#4770)
updates:
- [github.com/psf/black: 23.3.0 → 23.7.0](https://github.com/psf/black/compare/23.3.0...23.7.0)
- [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.276...v0.0.281)
- [github.com/asottile/blacken-docs: 1.14.0 → 1.15.0](https://github.com/asottile/blacken-docs/compare/1.14.0...1.15.0)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools (#4774)
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools
* Update docs/compiling.rst
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
* Provide better type hints for a variety of generic types (#4259)
* Provide better type hints for a variety of generic types
* Makes better documentation
* tuple, dict, list, set, function
* Move to py::typing
* style: pre-commit fixes
* Update copyright line with correct year and actual author. The author information was copy-pasted from the git log output.
---------
Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Use `py::set_error()` everywhere possible (only one special case, in common.h).
Overload `py::set_error(py::handle, py::handle)`.
Change back to `static py::handle exc = ... .release();`
Deprecate `py::exception<>::operator()`
* Add `PYBIND11_WARNING_DISABLE` for INTEL and MSVC (and sort alphabetically).
* `PYBIND11_WARNING_DISABLE_INTEL(10441)` does not work.
For ICC only, falling back to the recommended `py::set_error()` to keep the testing simple.
It is troublesome to add `--diag-disable=10441` specifically for test_exceptions.cpp, even that is non-ideal because it covers the entire file, not just the one line we need it for, and the value of exercising the trivial deprecated `operator()` on this one extra platform is practically zero.
* Fix silly oversight.
* NVHPC 23.5.0 generates deprecation warnings. They are currently not treated as errors, but falling back to using `py::set_error()` to not have to deal with that distraction.
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Keto D. Zhang <keto.zhang@gmail.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Co-authored-by: Dustin Spicuzza <dustin@virtualroadside.com>
2023-08-08 03:48:20 +00:00
|
|
|
py::set_error(PyExc_ArgumentError, "module2 handled this");
|
2021-07-21 12:22:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
then which translator handles the invalid_argument will be determined by the
|
|
|
|
order that module1 and module2 are imported. Since exception translators are
|
|
|
|
applied in the reverse order of registration, which ever module was imported
|
|
|
|
last will "win" and that translator will be applied.
|
|
|
|
|
|
|
|
If there are multiple pybind11 modules that share exception types (either
|
|
|
|
standard built-in or custom) loaded into a single python instance and
|
|
|
|
consistent error handling behavior is needed, then local translators should be
|
|
|
|
used.
|
|
|
|
|
|
|
|
Changing the previous example to use ``register_local_exception_translator``
|
|
|
|
would mean that when invalid_argument is thrown in the module2 code, the
|
|
|
|
module2 translator will always handle it, while in module1, the module1
|
|
|
|
translator will do the same.
|
|
|
|
|
2020-08-22 22:11:09 +00:00
|
|
|
.. _handling_python_exceptions_cpp:
|
|
|
|
|
|
|
|
Handling exceptions from Python in C++
|
|
|
|
======================================
|
|
|
|
|
|
|
|
When C++ calls Python functions, such as in a callback function or when
|
|
|
|
manipulating Python objects, and Python raises an ``Exception``, pybind11
|
|
|
|
converts the Python exception into a C++ exception of type
|
|
|
|
:class:`pybind11::error_already_set` whose payload contains a C++ string textual
|
|
|
|
summary and the actual Python exception. ``error_already_set`` is used to
|
|
|
|
propagate Python exception back to Python (or possibly, handle them in C++).
|
|
|
|
|
|
|
|
.. tabularcolumns:: |p{0.5\textwidth}|p{0.45\textwidth}|
|
|
|
|
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
| Exception raised in Python | Thrown as C++ exception type |
|
|
|
|
+======================================+======================================+
|
|
|
|
| Any Python ``Exception`` | :class:`pybind11::error_already_set` |
|
|
|
|
+--------------------------------------+--------------------------------------+
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
try {
|
|
|
|
// open("missing.txt", "r")
|
2020-10-03 17:38:03 +00:00
|
|
|
auto file = py::module_::import("io").attr("open")("missing.txt", "r");
|
2020-08-22 22:11:09 +00:00
|
|
|
auto text = file.attr("read")();
|
|
|
|
file.attr("close")();
|
|
|
|
} catch (py::error_already_set &e) {
|
|
|
|
if (e.matches(PyExc_FileNotFoundError)) {
|
|
|
|
py::print("missing.txt not found");
|
2021-01-14 04:14:45 +00:00
|
|
|
} else if (e.matches(PyExc_PermissionError)) {
|
2020-08-22 22:11:09 +00:00
|
|
|
py::print("missing.txt found but not accessible");
|
|
|
|
} else {
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Note that C++ to Python exception translation does not apply here, since that is
|
|
|
|
a method for translating C++ exceptions to Python, not vice versa. The error raised
|
|
|
|
from Python is always ``error_already_set``.
|
|
|
|
|
|
|
|
This example illustrates this behavior:
|
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
try {
|
|
|
|
py::eval("raise ValueError('The Ring')");
|
|
|
|
} catch (py::value_error &boromir) {
|
|
|
|
// Boromir never gets the ring
|
|
|
|
assert(false);
|
|
|
|
} catch (py::error_already_set &frodo) {
|
|
|
|
// Frodo gets the ring
|
|
|
|
py::print("I will take the ring");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// py::value_error is a request for pybind11 to raise a Python exception
|
|
|
|
throw py::value_error("The ball");
|
|
|
|
} catch (py::error_already_set &cat) {
|
|
|
|
// cat won't catch the ball since
|
|
|
|
// py::value_error is not a Python exception
|
|
|
|
assert(false);
|
|
|
|
} catch (py::value_error &dog) {
|
|
|
|
// dog will catch the ball
|
|
|
|
py::print("Run Spot run");
|
|
|
|
throw; // Throw it again (pybind11 will raise ValueError)
|
|
|
|
}
|
|
|
|
|
|
|
|
Handling errors from the Python C API
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
Where possible, use :ref:`pybind11 wrappers <wrappers>` instead of calling
|
|
|
|
the Python C API directly. When calling the Python C API directly, in
|
|
|
|
addition to manually managing reference counts, one must follow the pybind11
|
|
|
|
error protocol, which is outlined here.
|
|
|
|
|
|
|
|
After calling the Python C API, if Python returns an error,
|
|
|
|
``throw py::error_already_set();``, which allows pybind11 to deal with the
|
|
|
|
exception and pass it back to the Python interpreter. This includes calls to
|
Add `py::set_error()`, use in updated `py::exception<>` documentation (#4772)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* static py::exception<> -> static py::handle
* Add `py::set_error()` but also try the suggestion of @malfet (https://github.com/pytorch/pytorch/pull/106401#pullrequestreview-1559961407).
* clang 17 compatibility fixes (#4767)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* Add gcc:13 C++20
* Add silkeh/clang:16-bullseye C++20
* chore(deps): update pre-commit hooks (#4770)
updates:
- [github.com/psf/black: 23.3.0 → 23.7.0](https://github.com/psf/black/compare/23.3.0...23.7.0)
- [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.276...v0.0.281)
- [github.com/asottile/blacken-docs: 1.14.0 → 1.15.0](https://github.com/asottile/blacken-docs/compare/1.14.0...1.15.0)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools (#4774)
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools
* Update docs/compiling.rst
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
* Provide better type hints for a variety of generic types (#4259)
* Provide better type hints for a variety of generic types
* Makes better documentation
* tuple, dict, list, set, function
* Move to py::typing
* style: pre-commit fixes
* Update copyright line with correct year and actual author. The author information was copy-pasted from the git log output.
---------
Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Use `py::set_error()` everywhere possible (only one special case, in common.h).
Overload `py::set_error(py::handle, py::handle)`.
Change back to `static py::handle exc = ... .release();`
Deprecate `py::exception<>::operator()`
* Add `PYBIND11_WARNING_DISABLE` for INTEL and MSVC (and sort alphabetically).
* `PYBIND11_WARNING_DISABLE_INTEL(10441)` does not work.
For ICC only, falling back to the recommended `py::set_error()` to keep the testing simple.
It is troublesome to add `--diag-disable=10441` specifically for test_exceptions.cpp, even that is non-ideal because it covers the entire file, not just the one line we need it for, and the value of exercising the trivial deprecated `operator()` on this one extra platform is practically zero.
* Fix silly oversight.
* NVHPC 23.5.0 generates deprecation warnings. They are currently not treated as errors, but falling back to using `py::set_error()` to not have to deal with that distraction.
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Keto D. Zhang <keto.zhang@gmail.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Co-authored-by: Dustin Spicuzza <dustin@virtualroadside.com>
2023-08-08 03:48:20 +00:00
|
|
|
the error setting functions such as ``py::set_error()``.
|
2020-08-22 22:11:09 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
Add `py::set_error()`, use in updated `py::exception<>` documentation (#4772)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* static py::exception<> -> static py::handle
* Add `py::set_error()` but also try the suggestion of @malfet (https://github.com/pytorch/pytorch/pull/106401#pullrequestreview-1559961407).
* clang 17 compatibility fixes (#4767)
* Copy clang 17 compatibility fixes from PR #4762 to a separate PR.
* Add gcc:13 C++20
* Add silkeh/clang:16-bullseye C++20
* chore(deps): update pre-commit hooks (#4770)
updates:
- [github.com/psf/black: 23.3.0 → 23.7.0](https://github.com/psf/black/compare/23.3.0...23.7.0)
- [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](https://github.com/astral-sh/ruff-pre-commit/compare/v0.0.276...v0.0.281)
- [github.com/asottile/blacken-docs: 1.14.0 → 1.15.0](https://github.com/asottile/blacken-docs/compare/1.14.0...1.15.0)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools (#4774)
* docs: Remove upper bound on pybind11 in example pyproject.toml for setuptools
* Update docs/compiling.rst
---------
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
* Provide better type hints for a variety of generic types (#4259)
* Provide better type hints for a variety of generic types
* Makes better documentation
* tuple, dict, list, set, function
* Move to py::typing
* style: pre-commit fixes
* Update copyright line with correct year and actual author. The author information was copy-pasted from the git log output.
---------
Co-authored-by: Ralf W. Grosse-Kunstleve <rwgk@google.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* Use `py::set_error()` everywhere possible (only one special case, in common.h).
Overload `py::set_error(py::handle, py::handle)`.
Change back to `static py::handle exc = ... .release();`
Deprecate `py::exception<>::operator()`
* Add `PYBIND11_WARNING_DISABLE` for INTEL and MSVC (and sort alphabetically).
* `PYBIND11_WARNING_DISABLE_INTEL(10441)` does not work.
For ICC only, falling back to the recommended `py::set_error()` to keep the testing simple.
It is troublesome to add `--diag-disable=10441` specifically for test_exceptions.cpp, even that is non-ideal because it covers the entire file, not just the one line we need it for, and the value of exercising the trivial deprecated `operator()` on this one extra platform is practically zero.
* Fix silly oversight.
* NVHPC 23.5.0 generates deprecation warnings. They are currently not treated as errors, but falling back to using `py::set_error()` to not have to deal with that distraction.
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Keto D. Zhang <keto.zhang@gmail.com>
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Co-authored-by: Dustin Spicuzza <dustin@virtualroadside.com>
2023-08-08 03:48:20 +00:00
|
|
|
py::set_error(PyExc_TypeError, "C API type error demo");
|
2020-08-22 22:11:09 +00:00
|
|
|
throw py::error_already_set();
|
|
|
|
|
|
|
|
// But it would be easier to simply...
|
|
|
|
throw py::type_error("pybind11 wrapper type error");
|
|
|
|
|
|
|
|
Alternately, to ignore the error, call `PyErr_Clear
|
|
|
|
<https://docs.python.org/3/c-api/exceptions.html#c.PyErr_Clear>`_.
|
|
|
|
|
|
|
|
Any Python error must be thrown or cleared, or Python/pybind11 will be left in
|
|
|
|
an invalid state.
|
|
|
|
|
2021-08-24 00:30:01 +00:00
|
|
|
Chaining exceptions ('raise from')
|
|
|
|
==================================
|
|
|
|
|
2022-02-11 02:28:08 +00:00
|
|
|
Python has a mechanism for indicating that exceptions were caused by other
|
|
|
|
exceptions:
|
2021-08-24 00:30:01 +00:00
|
|
|
|
|
|
|
.. code-block:: py
|
|
|
|
|
|
|
|
try:
|
|
|
|
print(1 / 0)
|
|
|
|
except Exception as exc:
|
|
|
|
raise RuntimeError("could not divide by zero") from exc
|
|
|
|
|
|
|
|
To do a similar thing in pybind11, you can use the ``py::raise_from`` function. It
|
|
|
|
sets the current python error indicator, so to continue propagating the exception
|
2022-02-11 02:28:08 +00:00
|
|
|
you should ``throw py::error_already_set()``.
|
2021-08-24 00:30:01 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
try {
|
|
|
|
py::eval("print(1 / 0"));
|
|
|
|
} catch (py::error_already_set &e) {
|
|
|
|
py::raise_from(e, PyExc_RuntimeError, "could not divide by zero");
|
|
|
|
throw py::error_already_set();
|
|
|
|
}
|
|
|
|
|
|
|
|
.. versionadded:: 2.8
|
|
|
|
|
2020-08-08 10:07:14 +00:00
|
|
|
.. _unraisable_exceptions:
|
|
|
|
|
|
|
|
Handling unraisable exceptions
|
|
|
|
==============================
|
|
|
|
|
|
|
|
If a Python function invoked from a C++ destructor or any function marked
|
|
|
|
``noexcept(true)`` (collectively, "noexcept functions") throws an exception, there
|
2020-08-22 22:11:09 +00:00
|
|
|
is no way to propagate the exception, as such functions may not throw.
|
|
|
|
Should they throw or fail to catch any exceptions in their call graph,
|
|
|
|
the C++ runtime calls ``std::terminate()`` to abort immediately.
|
2020-08-08 10:07:14 +00:00
|
|
|
|
2020-08-22 22:11:09 +00:00
|
|
|
Similarly, Python exceptions raised in a class's ``__del__`` method do not
|
|
|
|
propagate, but are logged by Python as an unraisable error. In Python 3.8+, a
|
|
|
|
`system hook is triggered
|
|
|
|
<https://docs.python.org/3/library/sys.html#sys.unraisablehook>`_
|
|
|
|
and an auditing event is logged.
|
2020-08-08 10:07:14 +00:00
|
|
|
|
|
|
|
Any noexcept function should have a try-catch block that traps
|
2020-08-22 22:11:09 +00:00
|
|
|
class:`error_already_set` (or any other exception that can occur). Note that
|
|
|
|
pybind11 wrappers around Python exceptions such as
|
|
|
|
:class:`pybind11::value_error` are *not* Python exceptions; they are C++
|
|
|
|
exceptions that pybind11 catches and converts to Python exceptions. Noexcept
|
|
|
|
functions cannot propagate these exceptions either. A useful approach is to
|
|
|
|
convert them to Python exceptions and then ``discard_as_unraisable`` as shown
|
|
|
|
below.
|
2020-08-08 10:07:14 +00:00
|
|
|
|
|
|
|
.. code-block:: cpp
|
|
|
|
|
|
|
|
void nonthrowing_func() noexcept(true) {
|
|
|
|
try {
|
|
|
|
// ...
|
|
|
|
} catch (py::error_already_set &eas) {
|
|
|
|
// Discard the Python error using Python APIs, using the C++ magic
|
|
|
|
// variable __func__. Python already knows the type and value and of the
|
|
|
|
// exception object.
|
|
|
|
eas.discard_as_unraisable(__func__);
|
|
|
|
} catch (const std::exception &e) {
|
|
|
|
// Log and discard C++ exceptions.
|
|
|
|
third_party::log(e);
|
|
|
|
}
|
|
|
|
}
|
2020-08-19 18:53:59 +00:00
|
|
|
|
|
|
|
.. versionadded:: 2.6
|