[Python-checkins] CVS: python/dist/src/Python import.c,2.174,2.175

Jeremy Hylton jhylton@users.sourceforge.net
Fri, 13 Apr 2001 10:50:22 -0700


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

Modified Files:
	import.c 
Log Message:
split long line


Index: import.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/import.c,v
retrieving revision 2.174
retrieving revision 2.175
diff -C2 -r2.174 -r2.175
*** import.c	2001/03/20 23:09:54	2.174
--- import.c	2001/04/13 17:50:20	2.175
***************
*** 730,734 ****
  	}
  #endif
! 	cpathname = make_compiled_pathname(pathname, buf, (size_t)MAXPATHLEN+1);
  	if (cpathname != NULL &&
  	    (fpc = check_compiled_module(pathname, mtime, cpathname))) {
--- 730,735 ----
  	}
  #endif
! 	cpathname = make_compiled_pathname(pathname, buf, 
! 					   (size_t)MAXPATHLEN + 1);
  	if (cpathname != NULL &&
  	    (fpc = check_compiled_module(pathname, mtime, cpathname))) {