summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-06-06 14:14:33 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-06-06 14:14:33 (GMT)
commit83500dc7a5020d7e30ef67f35d4505514e80135e (patch)
tree351da3afa124d2b01d332c5c7efa635ae2272b4d /Doc
parent3266a8fa5910e941e3f640cb9e2804294d42ceca (diff)
parent780b585fbceb94ce0feb4faffa10e16591284d33 (diff)
downloadcpython-83500dc7a5020d7e30ef67f35d4505514e80135e.zip
cpython-83500dc7a5020d7e30ef67f35d4505514e80135e.tar.gz
cpython-83500dc7a5020d7e30ef67f35d4505514e80135e.tar.bz2
Merge quote quashing.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/unicode.rst2
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)