[Python-checkins] cpython (merge 3.3 -> default): Correcting the mistake in 678e3c0d2d99

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


http://hg.python.org/cpython/rev/e839e524a7d5
changeset:   85756:e839e524a7d5
parent:      85754:ad9a5ded5cf6
parent:      85755:2b7f11ba871c
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Thu Sep 19 00:10:17 2013 -0700
summary:
  Correcting the mistake in 678e3c0d2d99

Merge from 3.3
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
@@ -757,6 +757,8 @@
 
    As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``.
 
+   Availability: Unix.
+
 
 .. function:: fstat(fd)
 
@@ -801,8 +803,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