]> granicus.if.org Git - python/commitdiff
Fix typo in os.utime docstring (patch #1490189)
authorGeorg Brandl <georg@python.org>
Wed, 17 May 2006 14:18:20 +0000 (14:18 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 17 May 2006 14:18:20 +0000 (14:18 +0000)
Modules/posixmodule.c

index 68d8809074f353c74b4a4c98e6e3c4a76bf56c2c..3a028d98637b9116065ae9c2def3cf3bc8ee2848 100644 (file)
@@ -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.");