diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-09-19 07:10:17 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-09-19 07:10:17 (GMT) |
commit | 3af4fad55598a4faffd8314306daf6cc0363df8c (patch) | |
tree | 5d83927c4f0801a9c919bc938b54509e8b086fde /Doc/library/os.rst | |
parent | 6bd3e444f5444aeedcee6d6be5a2cd12a59d0154 (diff) | |
parent | 2a97cee5eda632a7737bf01608c0f6638cd3fea0 (diff) | |
download | cpython-3af4fad55598a4faffd8314306daf6cc0363df8c.zip cpython-3af4fad55598a4faffd8314306daf6cc0363df8c.tar.gz cpython-3af4fad55598a4faffd8314306daf6cc0363df8c.tar.bz2 |
Correcting the mistake in 678e3c0d2d99
Merge from 3.3
Addresses Issue #18553: isatty is not Unix only.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index f9f9df8..5355168 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -757,6 +757,8 @@ as internal buffering of data. As of Python 3.3, this is equivalent to ``os.pathconf(fd, name)``. + Availability: Unix. + .. 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 tty(-like) device, else ``False``. - Availability: Unix. - .. function:: lockf(fd, cmd, len) |