summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2018-09-12 19:14:35 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-09-12 19:14:35 (GMT)
commit0bd1a2dcfdf36b181385ae61361e7692f4ebb0fd (patch)
tree0adf66fd5134076264070c7cd2777eb310d38ae3 /Misc
parente5024517811ee990b770fca0ba7058742d00e032 (diff)
downloadcpython-0bd1a2dcfdf36b181385ae61361e7692f4ebb0fd.zip
cpython-0bd1a2dcfdf36b181385ae61361e7692f4ebb0fd.tar.gz
cpython-0bd1a2dcfdf36b181385ae61361e7692f4ebb0fd.tar.bz2
bpo-31577: Fix a crash in os.utime() in case of a bad ns argument. (GH-3752)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-09-25-20-36-24.bpo-31577.jgYsSA.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-25-20-36-24.bpo-31577.jgYsSA.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-25-20-36-24.bpo-31577.jgYsSA.rst
new file mode 100644
index 0000000..8142882
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-25-20-36-24.bpo-31577.jgYsSA.rst
@@ -0,0 +1,2 @@
+Fix a crash in `os.utime()` in case of a bad ns argument. Patch by Oren
+Milman.