Corect speling and add \n\ to line ends in new docstring for access().

This commit is contained in:
Guido van Rossum 2002-06-18 16:22:43 +00:00
parent 7f59124693
commit a0b9075816
1 changed files with 5 additions and 5 deletions

View File

@ -736,11 +736,11 @@ posix_do_stat(PyObject *self, PyObject *args, char *format,
PyDoc_STRVAR(posix_access__doc__, PyDoc_STRVAR(posix_access__doc__,
"access(path, mode) -> 1 if granted, 0 otherwise\n\ "access(path, mode) -> 1 if granted, 0 otherwise\n\
Use the real uid/gid to test for access to a path. Note that most 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 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 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 specified access to the path. The mode argument can be F_OK to test\n\
existance, or the inclusive-OR of R_OK, W_OK, and X_OK."); existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
static PyObject * static PyObject *
posix_access(PyObject *self, PyObject *args) posix_access(PyObject *self, PyObject *args)