diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-02-16 01:36:10 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-02-16 01:36:10 (GMT) |
commit | 4d6c6063bf619ce8c31cf9458209110338db386f (patch) | |
tree | 3a13387ed25d4fb2441a26179254723c7714ec56 | |
parent | 74eb8b2d1a1db905cffc4efcd1cefaf1f725cd81 (diff) | |
download | cpython-4d6c6063bf619ce8c31cf9458209110338db386f.zip cpython-4d6c6063bf619ce8c31cf9458209110338db386f.tar.gz cpython-4d6c6063bf619ce8c31cf9458209110338db386f.tar.bz2 |
Fix typo in os.supports_effective_ids documentation.
-rw-r--r-- | Doc/library/os.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index f217a36..98ee842 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2159,7 +2159,8 @@ features: contain :func:`os.access`, otherwise it will be empty. To check whether you can use the *effective_ids* parameter for - :func:`os.access`, use the ``in`` operator on ``supports_dir_fd``, like so:: + :func:`os.access`, use the ``in`` operator on ``supports_effective_ids``, + like so:: os.access in os.supports_effective_ids |