diff options
| author | Georg Brandl <georg@python.org> | 2007-11-01 17:19:36 (GMT) |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2007-11-01 17:19:36 (GMT) |
| commit | bf75c5133d61d0c404eddfbfc035829def0af6c0 (patch) | |
| tree | fba391d4d443b19c35dfefd1986c80b7c8a35181 | |
| parent | cf81e06959acc64e697ac709cb08795cc3984b25 (diff) | |
| download | cpython-bf75c5133d61d0c404eddfbfc035829def0af6c0.zip cpython-bf75c5133d61d0c404eddfbfc035829def0af6c0.tar.gz cpython-bf75c5133d61d0c404eddfbfc035829def0af6c0.tar.bz2 | |
#1364: os.lstat is available on Windows too, as an alias to os.stat.
| -rw-r--r-- | Doc/lib/libos.tex | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 18c5122..5b95d71 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -828,8 +828,9 @@ object, the result will be a list of Unicode objects]{2.3} \end{funcdesc} \begin{funcdesc}{lstat}{path} -Like \function{stat()}, but do not follow symbolic links. -Availability: Macintosh, \UNIX. +Like \function{stat()}, but do not follow symbolic links. This is an +alias for \function{stat()} on platforms that do not support symbolic +links, such as Windows. \end{funcdesc} \begin{funcdesc}{mkfifo}{path\optional{, mode}} |
