From: Senthil Kumaran Date: Sat, 7 Sep 2013 18:27:45 +0000 (-0700) Subject: os.isatty is not Unix only. Correct the wrong documentation. X-Git-Tag: v2.7.6rc1~167 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2646e6758d0f7fea0bff4f35e5623c342bdbce29;p=thirdparty%2FPython%2Fcpython.git os.isatty is not Unix only. Correct the wrong documentation. Addresses issue #18553 --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 106c1df35c08..d4912ce9c34a 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -737,8 +737,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:: lseek(fd, pos, how)