[Python-checkins] r46025 - python/trunk/Modules/posixmodule.c

georg.brandl python-checkins at python.org
Wed May 17 16:18:21 CEST 2006


Author: georg.brandl
Date: Wed May 17 16:18:20 2006
New Revision: 46025

Modified:
   python/trunk/Modules/posixmodule.c
Log:
Fix typo in os.utime docstring (patch #1490189)



Modified: python/trunk/Modules/posixmodule.c
==============================================================================
--- python/trunk/Modules/posixmodule.c	(original)
+++ python/trunk/Modules/posixmodule.c	Wed May 17 16:18:20 2006
@@ -2401,7 +2401,7 @@
 }
 
 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.");


More information about the Python-checkins mailing list