summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-12-01 12:30:20 (GMT)
committerGitHub <noreply@github.com>2018-12-01 12:30:20 (GMT)
commit32bc11c33cf5ccea165b5f4ac3799f02fdf9c76a (patch)
treefdc11cee67562143618adfe6bff187b5d7393f8d /Misc
parentedeca92c84a3b08902ecdfe987cde00c7e617887 (diff)
downloadcpython-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.rst2
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.