diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-05 22:20:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-05 22:20:26 (GMT) |
commit | fb3134f4d489556ff3cb8fcf7e9948bdab2e49d8 (patch) | |
tree | 921dcd951db59be29636959f8bda74cf63b0c111 /Doc/c-api | |
parent | 9083eb6aac6e0aa0eb1dee9bc535538de4125fcd (diff) | |
parent | 9a953dbb34b722dc16e98ef7103eb49b72a04e5e (diff) | |
download | cpython-fb3134f4d489556ff3cb8fcf7e9948bdab2e49d8.zip cpython-fb3134f4d489556ff3cb8fcf7e9948bdab2e49d8.tar.gz cpython-fb3134f4d489556ff3cb8fcf7e9948bdab2e49d8.tar.bz2 |
Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/unicode.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index fc91d0c..c11e049 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1657,8 +1657,7 @@ They all return *NULL* or ``-1`` if an exception occurs. ASCII-encoded strings, but the function interprets the input string as ISO-8859-1 if it contains non-ASCII characters. - This function returns ``-1`` upon failure, so one should call - :c:func:`PyErr_Occurred` to check for errors. + This function does not raise exceptions. .. c:function:: PyObject* PyUnicode_RichCompare(PyObject *left, PyObject *right, int op) |