diff options
author | Eli Bendersky <eliben@gmail.com> | 2012-06-03 05:07:47 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2012-06-03 05:07:47 (GMT) |
commit | 0813168e942a81c03727ef4785dceb642b959f20 (patch) | |
tree | 848d9ccbdea7f9f474b23319255973195c7d0021 /Doc/c-api/unicode.rst | |
parent | 11cfea92950eda064e9b5b7048c1951bb084fc43 (diff) | |
download | cpython-0813168e942a81c03727ef4785dceb642b959f20.zip cpython-0813168e942a81c03727ef4785dceb642b959f20.tar.gz cpython-0813168e942a81c03727ef4785dceb642b959f20.tar.bz2 |
Issue #14090: fix some minor C API problems in default branch (3.3)
Diffstat (limited to 'Doc/c-api/unicode.rst')
-rw-r--r-- | Doc/c-api/unicode.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst index a74a73d..fb7ba67 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1615,7 +1615,7 @@ They all return *NULL* or ``-1`` if an exception occurs. ISO-8859-1 if it contains non-ASCII characters". -.. c:function:: int PyUnicode_RichCompare(PyObject *left, PyObject *right, int op) +.. c:function:: PyObject* PyUnicode_RichCompare(PyObject *left, PyObject *right, int op) Rich compare two unicode strings and return one of the following: |