diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 01:11:04 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-28 01:11:04 (GMT) |
commit | a850ef698e55d07173051747e96207496c6f1bdb (patch) | |
tree | 4044b1fb278313ef2b95e05371d9a9ed188feb35 /Objects/exceptions.c | |
parent | e2eacc02bcc9f8977f5f3cea6243f236c508b772 (diff) | |
download | cpython-a850ef698e55d07173051747e96207496c6f1bdb.zip cpython-a850ef698e55d07173051747e96207496c6f1bdb.tar.gz cpython-a850ef698e55d07173051747e96207496c6f1bdb.tar.bz2 |
Issue #27626: Spelling fixes in docs, comments and internal names
Based on patch by Ville Skyttä.
Diffstat (limited to 'Objects/exceptions.c')
-rw-r--r-- | Objects/exceptions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Objects/exceptions.c b/Objects/exceptions.c index 3fc0e13..1929777 100644 --- a/Objects/exceptions.c +++ b/Objects/exceptions.c @@ -1640,7 +1640,7 @@ UnicodeEncodeError_str(PyObject *self) return PyUnicode_FromString(""); /* Get reason and encoding as strings, which they might not be if - they've been modified after we were contructed. */ + they've been modified after we were constructed. */ reason_str = PyObject_Str(uself->reason); if (reason_str == NULL) goto done; @@ -1729,7 +1729,7 @@ UnicodeDecodeError_str(PyObject *self) return PyUnicode_FromString(""); /* Get reason and encoding as strings, which they might not be if - they've been modified after we were contructed. */ + they've been modified after we were constructed. */ reason_str = PyObject_Str(uself->reason); if (reason_str == NULL) goto done; @@ -1830,7 +1830,7 @@ UnicodeTranslateError_str(PyObject *self) return PyUnicode_FromString(""); /* Get reason as a string, which it might not be if it's been - modified after we were contructed. */ + modified after we were constructed. */ reason_str = PyObject_Str(uself->reason); if (reason_str == NULL) goto done; |