Commit dcb8887e authored by Georg Brandl's avatar Georg Brandl

#10058: tweak wording about exception returns.

parent fd785ef5
...@@ -365,11 +365,12 @@ For C programmers, however, error checking always has to be explicit. All ...@@ -365,11 +365,12 @@ For C programmers, however, error checking always has to be explicit. All
functions in the Python/C API can raise exceptions, unless an explicit claim is functions in the Python/C API can raise exceptions, unless an explicit claim is
made otherwise in a function's documentation. In general, when a function made otherwise in a function's documentation. In general, when a function
encounters an error, it sets an exception, discards any object references that encounters an error, it sets an exception, discards any object references that
it owns, and returns an error indicator --- usually *NULL* or ``-1``. A few it owns, and returns an error indicator. If not documented otherwise, this
functions return a Boolean true/false result, with false indicating an error. indicator is either *NULL* or ``-1``, depending on the function's return type.
Very few functions return no explicit error indicator or have an ambiguous A few functions return a Boolean true/false result, with false indicating an
return value, and require explicit testing for errors with error. Very few functions return no explicit error indicator or have an
:c:func:`PyErr_Occurred`. ambiguous return value, and require explicit testing for errors with
:c:func:`PyErr_Occurred`. These exceptions are always explicitly documented.
.. index:: .. index::
single: PyErr_SetString() single: PyErr_SetString()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment