summaryrefslogtreecommitdiff
path: root/Tools/demo/ss1.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2016-09-08 13:59:53 -0400
committerR David Murray <rdmurray@bitdance.com>2016-09-08 13:59:53 -0400
commit44b548dda872c0d4f30afd6b44fd74b053a55ad8 (patch)
treeb3c1ff8485bc279000f9db95491ebc69a4385876 /Tools/demo/ss1.py
parent513d7478a136e7646075592da2593476299cc8be (diff)
downloadcpython-git-44b548dda872c0d4f30afd6b44fd74b053a55ad8.tar.gz
#27364: fix "incorrect" uses of escape character in the stdlib.
And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter.
Diffstat (limited to 'Tools/demo/ss1.py')
-rwxr-xr-xTools/demo/ss1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/demo/ss1.py b/Tools/demo/ss1.py
index c51f041933..bf88820dca 100755
--- a/Tools/demo/ss1.py
+++ b/Tools/demo/ss1.py
@@ -413,7 +413,7 @@ class FormulaCell(BaseCell):
def renumber(self, x1, y1, x2, y2, dx, dy):
out = []
- for part in re.split('(\w+)', self.formula):
+ for part in re.split(r'(\w+)', self.formula):
m = re.match('^([A-Z]+)([1-9][0-9]*)$', part)
if m is not None:
sx, sy = m.groups()