diff options
author | Georg Brandl <georg@python.org> | 2007-11-01 17:19:33 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-01 17:19:33 (GMT) |
commit | 03b15c67ff115048125e44ad41ba5e747a7c6187 (patch) | |
tree | 893720692b7a3ff9987723a72bb3dcdc735059a2 /Doc | |
parent | 405884cd6205f3856de943382900eb81c8f9578d (diff) | |
download | cpython-03b15c67ff115048125e44ad41ba5e747a7c6187.zip cpython-03b15c67ff115048125e44ad41ba5e747a7c6187.tar.gz cpython-03b15c67ff115048125e44ad41ba5e747a7c6187.tar.bz2 |
#1364: os.lstat is available on Windows too, as an alias to os.stat.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 0e46741..a776a6b 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -922,8 +922,9 @@ Files and Directories .. function:: lstat(path) - Like :func:`stat`, but do not follow symbolic links. Availability: Macintosh, - Unix. + Like :func:`stat`, but do not follow symbolic links. This is an alias for + :func:`stat` on platforms that do not support symbolic links, such as + Windows. .. function:: mkfifo(path[, mode]) |