summaryrefslogtreecommitdiff
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorQuan Tian <qtian@vmware.com>2018-10-20 05:30:03 +0800
committerVictor Stinner <vstinner@redhat.com>2018-10-19 23:30:03 +0200
commit3bd0d620d6669558e03e1022cbab88d64d4530b3 (patch)
treeeab293c78e5fd68da12326a979710631def36ea0 /Python/ceval.c
parentf192aeb95a139ede74d69e39c046c498ff288a37 (diff)
downloadcpython-git-3bd0d620d6669558e03e1022cbab88d64d4530b3.tar.gz
Fix typos in comments (GH-9905)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 1a8c9e2364..9a96dc7b37 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3092,7 +3092,7 @@ main_loop:
/* There was an exception and a True return.
* We must manually unwind the EXCEPT_HANDLER block
* which was created when the exception was caught,
- * otherwise the stack will be in an inconsisten state.
+ * otherwise the stack will be in an inconsistent state.
*/
PyTryBlock *b = PyFrame_BlockPop(f);
assert(b->b_type == EXCEPT_HANDLER);