From: Guido van Rossum Date: Tue, 18 Jun 2002 16:24:15 +0000 (+0000) Subject: Corect speling and add \n\ to line ends in new docstring for access(). X-Git-Tag: v2.2.2b1~315 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=277316f6944d19692e3cc1d340d254c4deaa8975;p=thirdparty%2FPython%2Fcpython.git Corect speling and add \n\ to line ends in new docstring for access(). --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index cdc2ce5d88c5..8826c76ba3d0 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -726,11 +726,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)