diff options
author | Oren Milman <orenmn@gmail.com> | 2018-09-12 19:14:35 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-09-12 19:14:35 (GMT) |
commit | 0bd1a2dcfdf36b181385ae61361e7692f4ebb0fd (patch) | |
tree | 0adf66fd5134076264070c7cd2777eb310d38ae3 /Misc | |
parent | e5024517811ee990b770fca0ba7058742d00e032 (diff) | |
download | cpython-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.rst | 2 |
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. |