diff options
author | mbarkhau <mbarkhau@gmail.com> | 2020-01-24 14:51:16 (GMT) |
---|---|---|
committer | Giampaolo Rodola <g.rodola@gmail.com> | 2020-01-24 14:51:16 (GMT) |
commit | 88704334e5262c6cd395a0809d4ef810f33f3ca5 (patch) | |
tree | 6ddbbf3be7e755ccaf6dab8d5dd14c533acda7a6 /Misc | |
parent | 66b00a9d3aacf6ed49412f48743e4913104a2bb3 (diff) | |
download | cpython-88704334e5262c6cd395a0809d4ef810f33f3ca5.zip cpython-88704334e5262c6cd395a0809d4ef810f33f3ca5.tar.gz cpython-88704334e5262c6cd395a0809d4ef810f33f3ca5.tar.bz2 |
bpo-39390 shutil: fix argument types for ignore callback (GH-18122)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-01-23-21-34-29.bpo-39390.D2tSXk.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-01-23-21-34-29.bpo-39390.D2tSXk.rst b/Misc/NEWS.d/next/Library/2020-01-23-21-34-29.bpo-39390.D2tSXk.rst new file mode 100644 index 0000000..ffa961e --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-01-23-21-34-29.bpo-39390.D2tSXk.rst @@ -0,0 +1,2 @@ +Fixed a regression with the `ignore` callback of :func:`shutil.copytree`. +The argument types are now str and List[str] again. |