diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-06-06 14:13:18 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-06-06 14:13:18 (GMT) |
commit | 780b585fbceb94ce0feb4faffa10e16591284d33 (patch) | |
tree | 91123bfa9132501f46ff1e6b5688a825abff8763 | |
parent | 7d55da42a4e7f1145f14312b703298aff25c0e06 (diff) | |
download | cpython-780b585fbceb94ce0feb4faffa10e16591284d33.zip cpython-780b585fbceb94ce0feb4faffa10e16591284d33.tar.gz cpython-780b585fbceb94ce0feb4faffa10e16591284d33.tar.bz2 |
Quash extraneous quote.
-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 c7ed5e5..0f0419c 100644 --- a/Doc/c-api/unicode.rst +++ b/Doc/c-api/unicode.rst @@ -1624,7 +1624,7 @@ They all return *NULL* or ``-1`` if an exception occurs. Compare a unicode object, *uni*, with *string* and return -1, 0, 1 for less than, equal, and greater than, respectively. It is best to pass only ASCII-encoded strings, but the function interprets the input string as - ISO-8859-1 if it contains non-ASCII characters". + ISO-8859-1 if it contains non-ASCII characters. .. c:function:: PyObject* PyUnicode_RichCompare(PyObject *left, PyObject *right, int op) |