diff options
author | Georg Brandl <georg@python.org> | 2008-02-13 07:20:22 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-13 07:20:22 (GMT) |
commit | 0a40ffb1b30a904eef00bb0c7ce4e18e7ca3dc75 (patch) | |
tree | 477479bf7012d7f849248f10262031ccbc0809fb /Doc | |
parent | 5f8bd3729ee36296ba5ae71d128f6879022818d2 (diff) | |
download | cpython-0a40ffb1b30a904eef00bb0c7ce4e18e7ca3dc75.zip cpython-0a40ffb1b30a904eef00bb0c7ce4e18e7ca3dc75.tar.gz cpython-0a40ffb1b30a904eef00bb0c7ce4e18e7ca3dc75.tar.bz2 |
#2063: correct order of utime and stime in os.times()
result on Windows.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index ff37d10..f76cd97 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1846,7 +1846,7 @@ written in Python, such as a mail server's external command delivery program. user time, children's system time, and elapsed real time since a fixed point in the past, in that order. See the Unix manual page :manpage:`times(2)` or the corresponding Windows Platform API documentation. Availability: Macintosh, Unix, - Windows. + Windows. On Windows, only the first two items are filled, the others are zero. .. function:: wait() |