From: Senthil Kumaran Date: Thu, 19 Sep 2013 07:08:56 +0000 (-0700) Subject: Correcting the mistake in 14ba90816930 X-Git-Tag: v3.4.0a3~43^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a97cee5eda632a7737bf01608c0f6638cd3fea0;p=thirdparty%2FPython%2Fcpython.git Correcting the mistake in 14ba90816930 Addresses Issue #18553: isatty is not Unix only. --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 074f12cea27a..bd6b3abdcec0 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -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)