diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 14:02:10 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 14:02:10 (GMT) |
commit | 5697c4b6419e5a90a59e616e4509a6fff7ebf1a8 (patch) | |
tree | 96efc6116e413e445e9dfdd174138d13b201b886 /Objects/abstract.c | |
parent | 0db9016a56ba1a7043361b55f5ca0759770d450e (diff) | |
download | cpython-5697c4b6419e5a90a59e616e4509a6fff7ebf1a8.zip cpython-5697c4b6419e5a90a59e616e4509a6fff7ebf1a8.tar.gz cpython-5697c4b6419e5a90a59e616e4509a6fff7ebf1a8.tar.bz2 |
Comment fixes extracted from patch by Demur Rumed.
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r-- | Objects/abstract.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index 12dd6a1..8ca6933 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -2132,7 +2132,7 @@ _Py_CheckFunctionResult(PyObject *func, PyObject *result, const char *where) "%s returned NULL without setting an error", where); #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 NULL without setting an error"); #endif return NULL; |