diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-15 02:14:19 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-15 02:14:19 (GMT) |
commit | 6245cb3c015a5b9febef4d6ef30d3acfc762a79d (patch) | |
tree | 3e0a3907968edb89a7d24a051dab35c9a43f5dee /Objects | |
parent | 7d82d0366bb6c1b175cf54cf87778bba2451b0f4 (diff) | |
download | cpython-6245cb3c015a5b9febef4d6ef30d3acfc762a79d.zip cpython-6245cb3c015a5b9febef4d6ef30d3acfc762a79d.tar.gz cpython-6245cb3c015a5b9febef4d6ef30d3acfc762a79d.tar.bz2 |
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
This affects documentation, code comments, and a debugging messages.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/codeobject.c | 2 | ||||
-rw-r--r-- | Objects/unicodeobject.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Objects/codeobject.c b/Objects/codeobject.c index 3ad0e99..964ae62 100644 --- a/Objects/codeobject.c +++ b/Objects/codeobject.c @@ -520,7 +520,7 @@ _PyCode_ConstantKey(PyObject *op) return key; } else { - /* for other types, use the object identifier as an unique identifier + /* for other types, use the object identifier as a unique identifier * to ensure that they are seen as unequal. */ PyObject *obj_id = PyLong_FromVoidPtr(op); if (obj_id == NULL) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 230125b..b146da9 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -675,7 +675,7 @@ Py_LOCAL_INLINE(Py_ssize_t) findchar(const void *s, int kind, } #ifdef Py_DEBUG -/* Fill the data of an Unicode string with invalid characters to detect bugs +/* Fill the data of a Unicode string with invalid characters to detect bugs earlier. _PyUnicode_CheckConsistency(str, 1) detects invalid characters, at least for |