summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-06-23 01:18:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-06-23 01:18:57 (GMT)
commit1a4ceb2f4b5d2423681a2e015d72130a338c902b (patch)
tree39823f6f63f87f9b2b99f65b8316e443e2258134
parent4ee6d25b1828cd08c6642ac3399f28007bc56d4b (diff)
downloadcpython-1a4ceb2f4b5d2423681a2e015d72130a338c902b.zip
cpython-1a4ceb2f4b5d2423681a2e015d72130a338c902b.tar.gz
cpython-1a4ceb2f4b5d2423681a2e015d72130a338c902b.tar.bz2
fix grammar
-rw-r--r--Python/symtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index 423679e..23f0184 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -492,7 +492,7 @@ check_unoptimized(const PySTEntryObject* ste) {
case OPT_IMPORT_STAR:
PyOS_snprintf(buf, sizeof(buf),
"import * is not allowed in function '%.100s' "
- "because it is %s",
+ "because it %s",
PyString_AS_STRING(ste->ste_name), trailer);
break;
case OPT_BARE_EXEC: