diff options
author | Mats Wichmann <mats@linux.com> | 2020-06-05 16:54:07 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-06-05 16:54:07 (GMT) |
commit | 0f3d4d1912b4d2378c989ea56a91ca2d4861d599 (patch) | |
tree | 5f5a0850d88de5688644f4a101a1aa33bafc5357 /CHANGES.txt | |
parent | 1ec3ac13545e57c2396a6255bf8069aeaead866b (diff) | |
download | SCons-0f3d4d1912b4d2378c989ea56a91ca2d4861d599.zip SCons-0f3d4d1912b4d2378c989ea56a91ca2d4861d599.tar.gz SCons-0f3d4d1912b4d2378c989ea56a91ca2d4861d599.tar.bz2 |
Update forked copytree function
SCons carries a forked copy of shutil.copytree() in order to
have it not fail if the target directory exists. Rebase the copy
it's forked off to Python 3.7 stdlib version, plus add the mod
in the style of Python 3.8 with a kwarg and using os.makedirs' ability
to do the same ignore-exists (we can't just require the 3.8 version,
since the baseline Python version is 3.5).
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'CHANGES.txt')
-rwxr-xr-x | CHANGES.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 5b09c46..6cc6595 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -162,6 +162,7 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER check and test is no longer needed. - Close various logfiles (trace, cache, taskmastertrace, configure) when done using atexit calls. + - Rebase forked copy of shutil.copytree to Python 3.7 stlib version. |