mirror of
https://github.com/python/cpython.git
synced 2025-08-02 08:02:56 +00:00
Merged revisions 87802 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87802 | antoine.pitrou | 2011-01-06 19:25:55 +0100 (jeu., 06 janv. 2011) | 6 lines Issue #7858: Raise an error properly when os.utime() fails under Windows on an existing file. (this does not seem to be easily testable) ........
This commit is contained in:
parent
8ad4cd90e9
commit
ff17385fbd
2 changed files with 4 additions and 0 deletions
|
@ -3031,6 +3031,7 @@ posix_utime(PyObject *self, PyObject *args)
|
|||
something is wrong with the file, when it also
|
||||
could be the time stamp that gives a problem. */
|
||||
win32_error("utime", NULL);
|
||||
goto done;
|
||||
}
|
||||
Py_INCREF(Py_None);
|
||||
result = Py_None;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue