[Python-checkins] CVS: python/dist/src/Python compile.c,2.169,2.170

Barry Warsaw bwarsaw@users.sourceforge.net
Fri, 23 Feb 2001 10:23:02 -0800


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

Modified Files:
	compile.c 
Log Message:
symtable_update_free_vars(), symtable_undo_free(),
symtable_enter_scope(): Removed some unnecessary backslashes at the
end of lines.  C != Python. :)


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.169
retrieving revision 2.170
diff -C2 -r2.169 -r2.170
*** compile.c	2001/02/23 17:55:27	2.169
--- compile.c	2001/02/23 18:22:59	2.170
***************
*** 4230,4234 ****
  			PyList_SetSlice(list, 0, 
  					((PyVarObject*)list)->ob_size, 0);
! 		child = (PySymtableEntryObject *)\
  			PyList_GET_ITEM(ste->ste_children, i);
  		while (PyDict_Next(child->ste_symbols, &pos, &name, &o)) {
--- 4230,4234 ----
  			PyList_SetSlice(list, 0, 
  					((PyVarObject*)list)->ob_size, 0);
! 		child = (PySymtableEntryObject *)
  			PyList_GET_ITEM(ste->ste_children, i);
  		while (PyDict_Next(child->ste_symbols, &pos, &name, &o)) {
***************
*** 4320,4324 ****
  	for (i = 0; i < PyList_GET_SIZE(ste->ste_children); ++i) {
  		PySymtableEntryObject *child;
! 		child = (PySymtableEntryObject *) \
  			PyList_GET_ITEM(ste->ste_children, i);
  		x = symtable_undo_free(st, child->ste_id, name);
--- 4320,4324 ----
  	for (i = 0; i < PyList_GET_SIZE(ste->ste_children); ++i) {
  		PySymtableEntryObject *child;
! 		child = (PySymtableEntryObject *)
  			PyList_GET_ITEM(ste->ste_children, i);
  		x = symtable_undo_free(st, child->ste_id, name);
***************
*** 4359,4363 ****
  		}
  	}
! 	st->st_cur = (PySymtableEntryObject *)\
  		PySymtableEntry_New(st, name, type, lineno);
  	if (strcmp(name, TOP) == 0)
--- 4359,4363 ----
  		}
  	}
! 	st->st_cur = (PySymtableEntryObject *)
  		PySymtableEntry_New(st, name, type, lineno);
  	if (strcmp(name, TOP) == 0)