diff options
author | Mats Wichmann <mats@linux.com> | 2019-05-10 15:09:37 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2019-05-13 15:23:34 (GMT) |
commit | 2845da6416d522cc6a15308b7787de65c22f200b (patch) | |
tree | 28ee4ad55d1d44d834c6214e802c48e75f94d9b1 /src/CHANGES.txt | |
parent | 8d800a37f1d0bdeae4fba560c0d66ab75129a570 (diff) | |
download | SCons-2845da6416d522cc6a15308b7787de65c22f200b.zip SCons-2845da6416d522cc6a15308b7787de65c22f200b.tar.gz SCons-2845da6416d522cc6a15308b7787de65c22f200b.tar.bz2 |
Fix some regexes for Python 3.8 complaints
Regexes that contained unescaped backslashes and were not listed
in raw string form caused one more test failure when Python 3.8
was experimentally turned on in the Travis CI build.
Also one utility script had the same, not affecting tests - found through
inspection.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'src/CHANGES.txt')
-rwxr-xr-x | src/CHANGES.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 2d62291..76cccac 100755 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -64,6 +64,7 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER - Fix coding error in docbook tool only exercised when using python lxml - Recognize two additional GNU compiler header directory options in ParseFlags: -iquote and -idirafter. + - Fix more re patterns that contain \ but not specified as raw strings RELEASE 3.0.5 - Mon, 26 Mar 2019 15:04:42 -0700 |