[Python-checkins] CVS: python/dist/src/Python compile.c,2.237,2.238

Neal Norwitz nnorwitz@users.sourceforge.net
Mon, 28 Jan 2002 16:56:41 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv16645

Modified Files:
	compile.c 
Log Message:
Fix missing space between words.  Bugfix candidate.

Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.237
retrieving revision 2.238
diff -C2 -d -r2.237 -r2.238
*** compile.c	2002/01/29 00:53:41	2.237
--- compile.c	2002/01/29 00:56:37	2.238
***************
*** 4453,4457 ****
  
  #define ILLEGAL_EXEC_AND_IMPORT_STAR \
! "function '%.100s' uses import * and bare exec, which are illegal" \
  "because it %s"
  
--- 4453,4457 ----
  
  #define ILLEGAL_EXEC_AND_IMPORT_STAR \
! "function '%.100s' uses import * and bare exec, which are illegal " \
  "because it %s"