[Python-checkins] CVS: python/dist/src/Python import.c,2.163,2.164

Tim Peters tim_one@users.sourceforge.net
Tue, 27 Feb 2001 21:56:20 -0800


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

Modified Files:
	import.c 
Log Message:
Comment typos.


Index: import.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/import.c,v
retrieving revision 2.163
retrieving revision 2.164
diff -C2 -r2.163 -r2.164
*** import.c	2001/02/28 05:34:27	2.163
--- import.c	2001/02/28 05:56:18	2.164
***************
*** 1021,1026 ****
  /* case_ok(buf, len, namelen, name)
   * We've already done a successful stat() or fopen() on buf (a path of length
!  * len; can not assume there's a trailing null).  name is the last component
!  * of then path (a string of length namelen, exclusive of trailing null).
   * case_ok() is to return 1 if there's a case-sensitive match for
   * name, else 0.  case_ok() is also to return 1 if envar PYTHONCASEOK
--- 1021,1026 ----
  /* case_ok(buf, len, namelen, name)
   * We've already done a successful stat() or fopen() on buf (a path of length
!  * len, exclusive of trailing null).  name is the last component of that path
!  & a string of length namelen, exclusive of trailing null).
   * case_ok() is to return 1 if there's a case-sensitive match for
   * name, else 0.  case_ok() is also to return 1 if envar PYTHONCASEOK