aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMickaël Schoentgen <contact@tiger-222.fr>2019-01-02 20:26:57 +0100
committerBenjamin Peterson <benjamin@python.org>2019-01-02 11:26:57 -0800
commitd466c43e55cd32af84e353f0e9a48b09b7534f61 (patch)
tree25dd81bd8e61213028f796cf1910fc5f99082511 /Modules/_sha3
parentBump copyright years to 2019. (GH-11404) (diff)
downloadcpython-d466c43e55cd32af84e353f0e9a48b09b7534f61.tar.gz
cpython-d466c43e55cd32af84e353f0e9a48b09b7534f61.tar.bz2
cpython-d466c43e55cd32af84e353f0e9a48b09b7534f61.zip
closes bpo-35643: Fix a SyntaxWarning: invalid escape sequence in Modules/_sha3/cleanup.py (GH-11411)
Diffstat (limited to 'Modules/_sha3')
-rwxr-xr-xModules/_sha3/cleanup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_sha3/cleanup.py b/Modules/_sha3/cleanup.py
index 17c56b34b26..4f53681b49e 100755
--- a/Modules/_sha3/cleanup.py
+++ b/Modules/_sha3/cleanup.py
@@ -8,7 +8,7 @@ import os
import re
CPP1 = re.compile("^//(.*)")
-CPP2 = re.compile("\ //(.*)")
+CPP2 = re.compile(r"\ //(.*)")
STATICS = ("void ", "int ", "HashReturn ",
"const UINT64 ", "UINT16 ", " int prefix##")