[Python-checkins] CVS: python/dist/src/Python compile.c,2.125,2.126

Tim Peters python-dev@python.org
Tue, 15 Aug 2000 09:41:29 -0700


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

Modified Files:
	compile.c 
Log Message:
Fix new compiler warnings.  Unused var in compile.c.  Argsize mismatches
in binascii.c (only on platforms with signed chars -- although Py_CHARMASK
is documented as returning an int, it only does so on platforms with
signed chars).


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.125
retrieving revision 2.126
diff -C2 -r2.125 -r2.126
*** compile.c	2000/08/15 16:13:37	2.125
--- compile.c	2000/08/15 16:41:26	2.126
***************
*** 306,310 ****
  	size_t n = strlen(msg);
  	PyObject *v, *tb, *tmp;
- 	char *s;
  	c->c_errors++;
  	if (c->c_lineno <= 1) {
--- 306,309 ----