[Python-checkins] CVS: python/dist/src/Python compile.c,2.115,2.116

Peter Schneider-Kamp python-dev@python.org
Wed, 12 Jul 2000 23:24:32 -0700


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

Modified Files:
	compile.c 
Log Message:

just fixing the indentation



Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.115
retrieving revision 2.116
diff -C2 -r2.115 -r2.116
*** compile.c	2000/07/13 06:15:04	2.115
--- compile.c	2000/07/13 06:24:29	2.116
***************
*** 3109,3113 ****
  			c->c_errors++;
  		}
!                 if (PyDict_GetItem(c->c_locals, nameval)) {
  			com_error(c, PyExc_SyntaxError,"duplicate argument in function definition");
  		}
--- 3109,3113 ----
  			c->c_errors++;
  		}
! 		if (PyDict_GetItem(c->c_locals, nameval)) {
  			com_error(c, PyExc_SyntaxError,"duplicate argument in function definition");
  		}