summaryrefslogtreecommitdiffstats
path: root/Include/unicodeobject.h
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:44:29 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:44:29 (GMT)
commit4a7c03aab455613e9ba898b7cae73459fadd57ac (patch)
treed09ea360154f3e045e2f5a76a172b0e6417fc957 /Include/unicodeobject.h
parentdf8f5b56c9dc5e950f39ed0221212256a39c1835 (diff)
parentf51d715845dfede2803ef7a2e6ea4e2a03f18486 (diff)
downloadcpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.zip
cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.gz
cpython-4a7c03aab455613e9ba898b7cae73459fadd57ac.tar.bz2
Issue #25523: Merge a-to-an corrections from 3.5.
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r--Include/unicodeobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h
index adcb64c..f0c1905 100644
--- a/Include/unicodeobject.h
+++ b/Include/unicodeobject.h
@@ -982,7 +982,7 @@ _PyUnicodeWriter_WriteSubstring(_PyUnicodeWriter *writer,
Py_ssize_t end
);
-/* Append a ASCII-encoded byte string.
+/* Append an ASCII-encoded byte string.
Return 0 on success, raise an exception and return -1 on error. */
PyAPI_FUNC(int)
_PyUnicodeWriter_WriteASCIIString(_PyUnicodeWriter *writer,
@@ -2058,7 +2058,7 @@ PyAPI_FUNC(PyObject *) PyUnicode_RichCompare(
int op /* Operation: Py_EQ, Py_NE, Py_GT, etc. */
);
-/* Apply a argument tuple or dictionary to a format string and return
+/* Apply an argument tuple or dictionary to a format string and return
the resulting Unicode string. */
PyAPI_FUNC(PyObject *) PyUnicode_Format(