diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-01-29 00:56:37 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-01-29 00:56:37 (GMT) |
commit | 150d09d3601821d85be03455ac8f8a4af566d08a (patch) | |
tree | e6989bd09443ece586f341d42757d05392982fde /Python | |
parent | 2a47c0fa23a3b84d767ee846f93f98aee7e2f5c3 (diff) | |
download | cpython-150d09d3601821d85be03455ac8f8a4af566d08a.zip cpython-150d09d3601821d85be03455ac8f8a4af566d08a.tar.gz cpython-150d09d3601821d85be03455ac8f8a4af566d08a.tar.bz2 |
Fix missing space between words. Bugfix candidate.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 4c68a15..dbae00d 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -4452,7 +4452,7 @@ symtable_check_unoptimized(struct compiling *c, "unqualified exec is not allowed in function '%.100s' it %s" #define ILLEGAL_EXEC_AND_IMPORT_STAR \ -"function '%.100s' uses import * and bare exec, which are illegal" \ +"function '%.100s' uses import * and bare exec, which are illegal " \ "because it %s" /* XXX perhaps the linenos for these opt-breaking statements |