summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-20 07:55:14 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-20 07:55:14 (GMT)
commit590dcab95af162aafcb5db34a36f1a3118ac83b7 (patch)
tree92074ea292f03d713eba666e0bc20e791cbd1955 /Objects
parent9a573a0c23f4814946393a901b3f0ecbf91c268b (diff)
parent2275e626b1694557f646fd8a06608074731d6c82 (diff)
downloadcpython-590dcab95af162aafcb5db34a36f1a3118ac83b7.zip
cpython-590dcab95af162aafcb5db34a36f1a3118ac83b7.tar.gz
cpython-590dcab95af162aafcb5db34a36f1a3118ac83b7.tar.bz2
Merge spelling fixes from 3.5
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 8ca6933..885d8de 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2155,7 +2155,7 @@ _Py_CheckFunctionResult(PyObject *func, PyObject *result, const char *where)
where);
_PyErr_ChainExceptions(exc, val, tb);
#ifdef Py_DEBUG
- /* Ensure that the bug is catched in debug mode */
+ /* Ensure that the bug is caught in debug mode */
Py_FatalError("a function returned a result with an error set");
#endif
return NULL;