Searched refs:effective_ids (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Modules/clinic/ |
D | posixmodule.c.h | 133 int effective_ids, int follow_symlinks); 144 int effective_ids = 0; in os_access() local 149 …path_converter, &path, &mode, FACCESSAT_DIR_FD_CONVERTER, &dir_fd, &effective_ids, &follow_symlink… in os_access() 152 _return_value = os_access_impl(module, &path, mode, dir_fd, effective_ids, follow_symlinks); in os_access()
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 1494 .. function:: access(path, mode, *, dir_fd=None, effective_ids=False, follow_symlinks=True) 1508 If *effective_ids* is ``True``, :func:`access` will perform its access 1510 *effective_ids* may not be supported on your platform; you can check whether 1544 Added the *dir_fd*, *effective_ids*, and *follow_symlinks* parameters. 2634 :mod:`os` module permit use of the *effective_ids* parameter for 2638 To check whether you can use the *effective_ids* parameter for 2644 Currently *effective_ids* only works on Unix platforms; it does not work on
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 2561 int effective_ids, int follow_symlinks) in os_access_impl() argument 2576 if (effective_ids) { in os_access_impl() 2604 effective_ids || in os_access_impl() 2609 if (effective_ids) in os_access_impl()
|
/external/python/cpython3/Lib/test/ |
D | test_zipfile.py | 833 effective_ids=os.access in os.supports_effective_ids):
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1619 * :func:`~os.access` accepts an ``effective_ids`` keyword argument to turn on
|