From: Georg Brandl Date: Wed, 17 May 2006 14:18:20 +0000 (+0000) Subject: Fix typo in os.utime docstring (patch #1490189) X-Git-Tag: v2.5b1~631 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e5b5e4fe1006bfb54cd673519df2220aa9b56a1;p=thirdparty%2FPython%2Fcpython.git Fix typo in os.utime docstring (patch #1490189) --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 68d8809074f3..3a028d98637b 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.");