[Python-checkins] r73513 - python/trunk/Python/symtable.c

benjamin.peterson python-checkins at python.org
Tue Jun 23 03:18:57 CEST 2009


Author: benjamin.peterson
Date: Tue Jun 23 03:18:57 2009
New Revision: 73513

Log:
fix grammar

Modified:
   python/trunk/Python/symtable.c

Modified: python/trunk/Python/symtable.c
==============================================================================
--- python/trunk/Python/symtable.c	(original)
+++ python/trunk/Python/symtable.c	Tue Jun 23 03:18:57 2009
@@ -492,7 +492,7 @@
 	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:


More information about the Python-checkins mailing list