diff options
author | Georg Brandl <georg@python.org> | 2006-05-17 14:18:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-05-17 14:18:20 (GMT) |
commit | 9e5b5e4fe1006bfb54cd673519df2220aa9b56a1 (patch) | |
tree | ea48654226ee4d398845aea878e8a3e969ccd47d /Modules/posixmodule.c | |
parent | d419a93fbc362829163a9d4bb8cbb28a2a6293c4 (diff) | |
download | cpython-9e5b5e4fe1006bfb54cd673519df2220aa9b56a1.zip cpython-9e5b5e4fe1006bfb54cd673519df2220aa9b56a1.tar.gz cpython-9e5b5e4fe1006bfb54cd673519df2220aa9b56a1.tar.bz2 |
Fix typo in os.utime docstring (patch #1490189)
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 68d8809..3a028d9 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -2401,7 +2401,7 @@ extract_time(PyObject *t, long* sec, long* usec) } PyDoc_STRVAR(posix_utime__doc__, -"utime(path, (atime, utime))\n\ +"utime(path, (atime, mtime))\n\ utime(path, None)\n\n\ Set the access and modified time of the file to the given values. If the\n\ second form is used, set the access and modified times to the current time."); |