(original) (raw)
changeset: 85592:d5c5ac33b9a1 branch: 2.7 parent: 85588:523cfc78847c user: Senthil Kumaran senthil@uthcode.com date: Sat Sep 07 11:27:45 2013 -0700 files: Doc/library/os.rst description: os.isatty is not Unix only. Correct the wrong documentation. Addresses issue #18553 diff -r 523cfc78847c -r d5c5ac33b9a1 Doc/library/os.rst --- a/Doc/library/os.rst Sat Sep 07 15:23:36 2013 +0300 +++ b/Doc/library/os.rst Sat Sep 07 11:27:45 2013 -0700 @@ -737,8 +737,6 @@ 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) /senthil@uthcode.com