diff options
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index aa9244a..4d9408a 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -1315,7 +1315,8 @@ posix_rmdir(PyObject *self, PyObject *args) static char posix_stat__doc__[] = -"stat(path) -> (mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)\n\ +"stat(path) -> (st_mode, st_ino, st_dev, st_nlink, st_uid, st_gid,\n\ + st_size, st_atime, st_mtime, st_ctime)\n\ Perform a stat system call on the given path."; static PyObject * @@ -4056,7 +4057,8 @@ posix_wait(PyObject *self, PyObject *args) static char posix_lstat__doc__[] = -"lstat(path) -> (mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)\n\ +"lstat(path) -> (st_mode, st_ino, st_dev, st_nlink, st_uid, st_gid,\n\ + st_size, st_atime, st_mtime, st_ctime)\n\ Like stat(path), but do not follow symbolic links."; static PyObject * |