summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-07-25 11:53:48 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-07-25 11:53:48 (GMT)
commit5a294d822b7f5732135662907ec1a1d4a7b0fc9a (patch)
tree641599f8af6bc9f7879fe73012747e5b41591518 /Misc/NEWS
parent7e732a7181ab6debfe5df33bfc29035d522dfef9 (diff)
downloadcpython-5a294d822b7f5732135662907ec1a1d4a7b0fc9a.zip
cpython-5a294d822b7f5732135662907ec1a1d4a7b0fc9a.tar.gz
cpython-5a294d822b7f5732135662907ec1a1d4a7b0fc9a.tar.bz2
Issue #21697: shutil.copytree() now correctly handles symbolic links that point to directories.
Patch by Eduardo Seabra and Thomas Kluyver.
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 1a67632..a347b94 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #21697: shutil.copytree() now correctly handles symbolic links that
+ point to directories. Patch by Eduardo Seabra and Thomas Kluyver.
+
- Issue #24620: Random.setstate() now validates the value of state last element.
- Issue #22153: Improve unittest docs. Patch from Martin Panter and evilzero.