diff options
| author | Benjamin Peterson <benjamin@python.org> | 2016-09-05 22:35:45 (GMT) |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2016-09-05 22:35:45 (GMT) |
| commit | b1cb8b287223e84b39a1a1c58aa8046a261feb38 (patch) | |
| tree | 6e5edc18d4033ae020b11d446cafea8d9bb6404c /Modules/posixmodule.c | |
| parent | 4837141def956b2079248e1ef638a1e0234e9eae (diff) | |
| parent | 768f3b4492c3ab5037cf575bd5dcf2155aeb33b5 (diff) | |
| download | cpython-b1cb8b287223e84b39a1a1c58aa8046a261feb38.zip cpython-b1cb8b287223e84b39a1a1c58aa8046a261feb38.tar.gz cpython-b1cb8b287223e84b39a1a1c58aa8046a261feb38.tar.bz2 | |
merge 3.5
Diffstat (limited to 'Modules/posixmodule.c')
| -rw-r--r-- | Modules/posixmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index f9693e8..c9ac1f7 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -2595,8 +2595,8 @@ os_lstat_impl(PyObject *module, path_t *path, int dir_fd) /*[clinic input] os.access -> bool - path: path_t(allow_fd=True) - Path to be tested; can be string, bytes, or open-file-descriptor int. + path: path_t + Path to be tested; can be string or bytes mode: int Operating-system mode bitfield. Can be F_OK to test existence, @@ -2634,7 +2634,7 @@ Note that most operations will use the effective uid/gid, therefore this static int os_access_impl(PyObject *module, path_t *path, int mode, int dir_fd, int effective_ids, int follow_symlinks) -/*[clinic end generated code: output=cf84158bc90b1a77 input=b75a756797af45ec]*/ +/*[clinic end generated code: output=cf84158bc90b1a77 input=8e8c3a6ba791fee3]*/ { int return_value; |
