From 9ad5bf662db7d209e661663db13b41670fafb376 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 18:57:49 +0200 Subject: [PATCH] Closes #15228: remove reference to Unix "touch"; it is confusing since the path needs to exist for os.utime() to succeed --- Doc/library/os.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 9d4642c2d58..ad7f98fa5af 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2104,8 +2104,6 @@ features: - If *times* and *ns* are both ``None``, this is equivalent to specifying ``ns=(atime_ns, mtime_ns)`` where both times are the current time. - (The effect is similar to running the Unix program - :program:`touch` on *path*.) It is an error to specify tuples for both *times* and *ns*.