[Python-checkins] CVS: python/dist/src/Python compile.c,2.127,2.128

Barry Warsaw python-dev@python.org
Fri, 18 Aug 2000 12:59:22 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory slayer.i.sourceforge.net:/tmp/cvs-serv28040

Modified Files:
	compile.c 
Log Message:
com_error(): Quiet gcc -Wall warning.


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.127
retrieving revision 2.128
diff -C2 -r2.127 -r2.128
*** compile.c	2000/08/17 22:55:00	2.127
--- compile.c	2000/08/18 19:59:20	2.128
***************
*** 304,308 ****
  com_error(struct compiling *c, PyObject *exc, char *msg)
  {
- 	size_t n = strlen(msg);
  	PyObject *v, *tb, *tmp;
  	c->c_errors++;
--- 304,307 ----