diff options
author | Guido van Rossum <guido@python.org> | 2002-06-18 16:22:43 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-06-18 16:22:43 (GMT) |
commit | a0b907581611d19c3b7741f15c59b873009036f4 (patch) | |
tree | da592944499f12f8d87a91e055a9f9e3be8b00d8 /Modules/posixmodule.c | |
parent | 7f591246936a5a2b763851e3cb866be44a321d50 (diff) | |
download | cpython-a0b907581611d19c3b7741f15c59b873009036f4.zip cpython-a0b907581611d19c3b7741f15c59b873009036f4.tar.gz cpython-a0b907581611d19c3b7741f15c59b873009036f4.tar.bz2 |
Corect speling and add \n\ to line ends in new docstring for access().
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 838e2d7..0ddd83e 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -736,11 +736,11 @@ posix_do_stat(PyObject *self, PyObject *args, char *format, 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."); +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 * posix_access(PyObject *self, PyObject *args) |