[Python-checkins] python/dist/src/Modules posixmodule.c,2.238,2.239

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Tue, 18 Jun 2002 09:22:45 -0700


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

Modified Files:
	posixmodule.c 
Log Message:
Corect speling and add \n\ to line ends in new docstring for access().


Index: posixmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/posixmodule.c,v
retrieving revision 2.238
retrieving revision 2.239
diff -C2 -d -r2.238 -r2.239
*** posixmodule.c	18 Jun 2002 16:15:51 -0000	2.238
--- posixmodule.c	18 Jun 2002 16:22:43 -0000	2.239
***************
*** 737,745 ****
  PyDoc_STRVAR(posix_access__doc__,
  "access(path, mode) -> 1 if granted, 0 otherwise\n\
! Use the real uid/gid to test for access to a path.  Note that most
! operations will use the effective uid/gid, therefore this routine can
! be used in a suid/sgid environment to test if the invoking user has the
! specified access to the path.  The mode argument can be F_OK to test
! existance, or the inclusive-OR of R_OK, W_OK, and X_OK.");
  
  static PyObject *
--- 737,745 ----
  PyDoc_STRVAR(posix_access__doc__,
  "access(path, mode) -> 1 if granted, 0 otherwise\n\
! Use the real uid/gid to test for access to a path.  Note that most\n\
! operations will use the effective uid/gid, therefore this routine can\n\
! be used in a suid/sgid environment to test if the invoking user has the\n\
! specified access to the path.  The mode argument can be F_OK to test\n\
! existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
  
  static PyObject *