]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correcting the mistake in 14ba90816930
authorSenthil Kumaran <senthil@uthcode.com>
Thu, 19 Sep 2013 07:08:56 +0000 (00:08 -0700)
committerSenthil Kumaran <senthil@uthcode.com>
Thu, 19 Sep 2013 07:08:56 +0000 (00:08 -0700)
Addresses Issue #18553: isatty is not Unix only.

Doc/library/os.rst

index 074f12cea27a50f202385b8d2f6c438fa8fb222f..bd6b3abdcec0c296ef4878c47662713c107326b9 100644 (file)
@@ -744,6 +744,8 @@ as internal buffering of data.
 
    As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``.
 
+   Availability: Unix.
+
 
 .. function:: fstat(fd)
 
@@ -788,8 +790,6 @@ as internal buffering of data.
    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)