summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_re.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-09-12 03:49:31 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-09-12 03:49:31 (GMT)
commit0e9980f75a203ee1b2ac28f76a76239446b271d6 (patch)
treed1691347ed42925a68cebb2647d83dba6d45cb55 /Lib/test/test_re.py
parent2ee8099bd82b5eea9a3efc54f7bcdd12b54f84cf (diff)
downloadcpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.zip
cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.gz
cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_re.py')
-rw-r--r--Lib/test/test_re.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py
index 9e5fe0d..07bc63b 100644
--- a/Lib/test/test_re.py
+++ b/Lib/test/test_re.py
@@ -104,7 +104,7 @@ class ReTests(unittest.TestCase):
self.assertEqual(re.sub('x', r'\400', 'x'), '\0')
self.assertEqual(re.sub('x', r'\777', 'x'), '\377')
-
+
self.assertRaises(re.error, re.sub, 'x', r'\1', 'x')
self.assertRaises(re.error, re.sub, 'x', r'\8', 'x')
self.assertRaises(re.error, re.sub, 'x', r'\9', 'x')