diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-07-18 23:25:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-07-18 23:25:13 (GMT) |
commit | ee5729dbf978c9d1ee78974b84be9cd02a2bc117 (patch) | |
tree | 043cf3cdd19d1a818f362d781e5289af4a205417 /Python | |
parent | a2dd3b23af1aa638a5ecea20f1c43e894b5fc10e (diff) | |
download | cpython-ee5729dbf978c9d1ee78974b84be9cd02a2bc117.zip cpython-ee5729dbf978c9d1ee78974b84be9cd02a2bc117.tar.gz cpython-ee5729dbf978c9d1ee78974b84be9cd02a2bc117.tar.bz2 |
add missing 'because' (closes #22008)
Patch from A Kaptur.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/symtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index 99f4191..8d4b0d3 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -504,7 +504,7 @@ check_unoptimized(const PySTEntryObject* ste) { case OPT_BARE_EXEC: PyOS_snprintf(buf, sizeof(buf), "unqualified exec is not allowed in function " - "'%.100s' it %s", + "'%.100s' because it %s", PyString_AS_STRING(ste->ste_name), trailer); break; default: |