summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-08-29 04:07:35 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2014-08-29 04:07:35 (GMT)
commit6685883c02b29b66813343e6380133cd49df4300 (patch)
tree7ed937d704da06e0cb359c2d8e18d18ae0322d5c /Misc/NEWS
parent59e0802301e907873e392e0b25917fd0007a6252 (diff)
downloadcpython-6685883c02b29b66813343e6380133cd49df4300.zip
cpython-6685883c02b29b66813343e6380133cd49df4300.tar.gz
cpython-6685883c02b29b66813343e6380133cd49df4300.tar.bz2
Issue #22182: Use e.args to unpack exceptions correctly in distutils.file_util.move_file.
Patch by Claudiu Popa.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bc90861..854fc73 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #22182: Use e.args to unpack exceptions correctly in
+ distutils.file_util.move_file. Patch by Claudiu Popa.
+
- The webbrowser module now uses subprocess's start_new_session=True rather
than a potentially risky preexec_fn=os.setsid call.