Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b715fac commit e85da7aCopy full SHA for e85da7a
2 files changed
Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
30
Library
31
-------
32
33
+- Issue #7858: Raise an error properly when os.utime() fails under Windows
34
+ on an existing file.
35
+
36
- Issue #3839: wsgiref should not override a Content-Length header set by
37
the application. Initial patch by Clovis Fabricio.
38
Modules/posixmodule.c
@@ -3256,6 +3256,7 @@ posix_utime(PyObject *self, PyObject *args)
3256
something is wrong with the file, when it also
3257
could be the time stamp that gives a problem. */
3258
win32_error("utime", NULL);
3259
+ goto done;
3260
}
3261
Py_INCREF(Py_None);
3262
result = Py_None;
0 commit comments