(original) (raw)
changeset: 85756:e839e524a7d5 parent: 85754:ad9a5ded5cf6 parent: 85755:2b7f11ba871c user: Senthil Kumaran senthil@uthcode.com date: Thu Sep 19 00:10:17 2013 -0700 files: Doc/library/os.rst description: Correcting the mistake in 678e3c0d2d99 Merge from 3.3 Addresses Issue #18553: isatty is not Unix only. diff -r ad9a5ded5cf6 -r e839e524a7d5 Doc/library/os.rst --- a/Doc/library/os.rst Wed Sep 18 08:59:47 2013 -0400 +++ b/Doc/library/os.rst Thu Sep 19 00:10:17 2013 -0700 @@ -757,6 +757,8 @@ As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``. + Availability: Unix. + .. function:: fstat(fd) @@ -801,8 +803,6 @@ 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) /senthil@uthcode.com