add realtime as 5th item to os.times() return value

This commit is contained in:
Guido van Rossum 1995-09-13 17:36:35 +00:00
parent 93cf55e369
commit 1e150618a3
2 changed files with 8 additions and 4 deletions

View File

@ -300,9 +300,11 @@ value is the exit status of the process as returned by Standard C
\end{funcdesc}
\begin{funcdesc}{times}{}
Return a 4-tuple of floating point numbers indicating accumulated CPU
Return a 5-tuple of floating point numbers indicating accumulated (CPU
or other)
times, in seconds. The items are: user time, system time, children's
user time, and children's system time, in that order. See the \UNIX{}
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 {\it times}(2). (Not on MS-DOS.)
\end{funcdesc}

View File

@ -300,9 +300,11 @@ value is the exit status of the process as returned by Standard C
\end{funcdesc}
\begin{funcdesc}{times}{}
Return a 4-tuple of floating point numbers indicating accumulated CPU
Return a 5-tuple of floating point numbers indicating accumulated (CPU
or other)
times, in seconds. The items are: user time, system time, children's
user time, and children's system time, in that order. See the \UNIX{}
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 {\it times}(2). (Not on MS-DOS.)
\end{funcdesc}