[Python-checkins] cpython (3.4): Fix typo in os.supports_effective_ids documentation.

berker.peksag python-checkins at python.org
Mon Feb 16 02:36:40 CET 2015


https://hg.python.org/cpython/rev/be1c9482b6af
changeset:   94643:be1c9482b6af
branch:      3.4
parent:      94639:693bf15b4314
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Mon Feb 16 03:36:10 2015 +0200
summary:
  Fix typo in os.supports_effective_ids documentation.

files:
  Doc/library/os.rst |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -2159,7 +2159,8 @@
    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
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list