Correcting the mistake in 678e3c0d2d99

Merge from 3.3
Addresses Issue #18553: isatty is not Unix only.
This commit is contained in:
Senthil Kumaran 2013-09-19 00:10:17 -07:00
commit 3af4fad555

View file

@ -757,6 +757,8 @@ as internal buffering of data.
As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``. As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``.
Availability: Unix.
.. function:: fstat(fd) .. function:: fstat(fd)
@ -801,8 +803,6 @@ as internal buffering of data.
Return ``True`` if the file descriptor *fd* is open and connected to a Return ``True`` if the file descriptor *fd* is open and connected to a
tty(-like) device, else ``False``. tty(-like) device, else ``False``.
Availability: Unix.
.. function:: lockf(fd, cmd, len) .. function:: lockf(fd, cmd, len)