summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-06-18 16:26:43 +0000
committerGuido van Rossum <guido@python.org>2002-06-18 16:26:43 +0000
commit26b927b1c2ac6f50e205e7bd59bd086b325095cd (patch)
treeabc83df1ead6121dd50f2637309eebd6c3e32a6d
parent49902385329b34e38b4ddfb3171e8670b3eaa126 (diff)
downloadcpython-26b927b1c2ac6f50e205e7bd59bd086b325095cd.tar.gz
Corect speling and add \n\ to line ends in new docstring for access().
-rw-r--r--Modules/posixmodule.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 2fe9e0c4e0..b2d4c183c6 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -596,11 +596,11 @@ posix_do_stat(PyObject *self, PyObject *args, char *format,
static char 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)