[Python-checkins] cpython (3.3): Correcting the mistake in 14ba90816930

senthil.kumaran python-checkins at python.org
Thu Sep 19 09:10:25 CEST 2013


http://hg.python.org/cpython/rev/2b7f11ba871c
changeset:   85755:2b7f11ba871c
branch:      3.3
parent:      85753:b8206cb2c4ee
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Thu Sep 19 00:08:56 2013 -0700
summary:
  Correcting the mistake in 14ba90816930

Addresses Issue #18553: isatty is not Unix only.

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


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -744,6 +744,8 @@
 
    As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``.
 
+   Availability: Unix.
+
 
 .. function:: fstat(fd)
 
@@ -788,8 +790,6 @@
    Return ``True`` if the file descriptor *fd* is open and connected to a
    tty(-like) device, else ``False``.
 
-   Availability: Unix.
-
 
 .. function:: lockf(fd, cmd, len)
 

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


More information about the Python-checkins mailing list