summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2019-02-26 11:04:41 (GMT)
committerGitHub <noreply@github.com>2019-02-26 11:04:41 (GMT)
commitc606a9cbd48f69d3f4a09204c781dda9864218b7 (patch)
treea2847d175dac2288dff7541eeba3ff4b3737a169 /Misc
parentd5a551c2694e32835bcdafc01d611f3227ca36b3 (diff)
downloadcpython-c606a9cbd48f69d3f4a09204c781dda9864218b7.zip
cpython-c606a9cbd48f69d3f4a09204c781dda9864218b7.tar.gz
cpython-c606a9cbd48f69d3f4a09204c781dda9864218b7.tar.bz2
bpo-35652: shutil.copytree(copy_function=...) erroneously pass DirEntry instead of path str (GH-11997)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-02-26-11-34-44.bpo-35652.6KRJu_.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-02-26-11-34-44.bpo-35652.6KRJu_.rst b/Misc/NEWS.d/next/Library/2019-02-26-11-34-44.bpo-35652.6KRJu_.rst
new file mode 100644
index 0000000..c247e17
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-02-26-11-34-44.bpo-35652.6KRJu_.rst
@@ -0,0 +1,2 @@
+shutil.copytree(copy_function=...) erroneously pass DirEntry instead of a
+path string.