diff options
author | Fred Drake <fdrake@acm.org> | 2000-05-02 17:29:35 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-05-02 17:29:35 (GMT) |
commit | e06d025e00e84493b96b1152d1f1f48c751ca729 (patch) | |
tree | 9614e0aca33e9faf82c3402a6fe9b8d9ed97c5a2 /Doc | |
parent | a6e8339e61236d00cb468c53c9b8d6258aabee78 (diff) | |
download | cpython-e06d025e00e84493b96b1152d1f1f48c751ca729.zip cpython-e06d025e00e84493b96b1152d1f1f48c751ca729.tar.gz cpython-e06d025e00e84493b96b1152d1f1f48c751ca729.tar.bz2 |
Use \versionchanged to indicate when the second parameter to utime()
was allowed to be None.
Diffstat (limited to 'Doc')
-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 0fb8f10..e9302d1 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -706,8 +706,9 @@ Availability: Macintosh, \UNIX{}, Windows. Set the access and modified times of the file specified by \var{path}. If \var{times} is \code{None}, then the file's access and modified times are set to the current time. Otherwise, \var{times} must be a -2-tuple of numbers, of the form \var{(atime, mtime)} which is used to -set the access and modified times, respectively. +2-tuple of numbers, of the form \code{(\var{atime}, \var{mtime})} +which is used to set the access and modified times, respectively. +\versionchanged[added support for \code{None} for \var{times}]{1.6} Availability: Macintosh, \UNIX{}, Windows. \end{funcdesc} |