commit | d466c43e55cd32af84e353f0e9a48b09b7534f61 | [log] [tgz] |
---|---|---|
author | Mickaƫl Schoentgen <contact@tiger-222.fr> | Wed Jan 02 20:26:57 2019 +0100 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Jan 02 11:26:57 2019 -0800 |
tree | 25dd81bd8e61213028f796cf1910fc5f99082511 | |
parent | 9a69ae8a78785105ded02b083b2e5cd2dd939307 [diff] |
closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11411)
diff --git a/Modules/_sha3/cleanup.py b/Modules/_sha3/cleanup.py index 17c56b3..4f53681 100755 --- a/Modules/_sha3/cleanup.py +++ b/Modules/_sha3/cleanup.py
@@ -8,7 +8,7 @@ import re CPP1 = re.compile("^//(.*)") -CPP2 = re.compile("\ //(.*)") +CPP2 = re.compile(r"\ //(.*)") STATICS = ("void ", "int ", "HashReturn ", "const UINT64 ", "UINT16 ", " int prefix##")