diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-12-01 12:30:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-01 12:30:20 (GMT) |
commit | 32bc11c33cf5ccea165b5f4ac3799f02fdf9c76a (patch) | |
tree | fdc11cee67562143618adfe6bff187b5d7393f8d /Misc | |
parent | edeca92c84a3b08902ecdfe987cde00c7e617887 (diff) | |
download | cpython-32bc11c33cf5ccea165b5f4ac3799f02fdf9c76a.zip cpython-32bc11c33cf5ccea165b5f4ac3799f02fdf9c76a.tar.gz cpython-32bc11c33cf5ccea165b5f4ac3799f02fdf9c76a.tar.bz2 |
bpo-35371: Fix possible crash in os.utime() on Windows. (GH-10844)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-12-01-13-44-12.bpo-35371.fTAwlX.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-12-01-13-44-12.bpo-35371.fTAwlX.rst b/Misc/NEWS.d/next/Library/2018-12-01-13-44-12.bpo-35371.fTAwlX.rst new file mode 100644 index 0000000..f40d139 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-12-01-13-44-12.bpo-35371.fTAwlX.rst @@ -0,0 +1,2 @@ +Fixed possible crash in ``os.utime()`` on Windows when pass incorrect +arguments. |