[Python-checkins] CVS: python/dist/src/Objects fileobject.c,2.95,2.96

Fred L. Drake python-dev@python.org
Tue, 19 Dec 2000 16:55:09 -0800


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

Modified Files:
	fileobject.c 
Log Message:

Make the indentation consistently use tabs instead of using spaces just
in one place.


Index: fileobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/fileobject.c,v
retrieving revision 2.95
retrieving revision 2.96
diff -C2 -r2.95 -r2.96
*** fileobject.c	2000/12/19 20:59:04	2.95
--- fileobject.c	2000/12/20 00:55:07	2.96
***************
*** 661,667 ****
  		Py_END_ALLOW_THREADS
  		if (n1 == -1) {
!                         if (buf){
!                                 free(buf);
!                         }
  			clearerr(fp);
  			if (PyErr_CheckSignals()) {
--- 661,667 ----
  		Py_END_ALLOW_THREADS
  		if (n1 == -1) {
! 			if (buf){
! 				free(buf);
! 			}
  			clearerr(fp);
  			if (PyErr_CheckSignals()) {