diff options
author | Quan Tian <qtian@vmware.com> | 2018-10-20 05:30:03 +0800 |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-10-19 23:30:03 +0200 |
commit | 3bd0d620d6669558e03e1022cbab88d64d4530b3 (patch) | |
tree | eab293c78e5fd68da12326a979710631def36ea0 /Python/ceval.c | |
parent | f192aeb95a139ede74d69e39c046c498ff288a37 (diff) | |
download | cpython-git-3bd0d620d6669558e03e1022cbab88d64d4530b3.tar.gz |
Fix typos in comments (GH-9905)
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
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); |