summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_re.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-10 09:59:16 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-10 09:59:16 (GMT)
commit88fdeb45ef86385b5ac212929fbbf69711f9245a (patch)
treeb47ec89f01df6c7ce0518ad8fe5e261f4694fec6 /Lib/test/test_re.py
parent344d26c7a08896a1eb54f638e80de0d0fadfad39 (diff)
downloadcpython-88fdeb45ef86385b5ac212929fbbf69711f9245a.zip
cpython-88fdeb45ef86385b5ac212929fbbf69711f9245a.tar.gz
cpython-88fdeb45ef86385b5ac212929fbbf69711f9245a.tar.bz2
#2650: re.escape() no longer escapes the "_".
Diffstat (limited to 'Lib/test/test_re.py')
-rw-r--r--Lib/test/test_re.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py
index fe8bc34..e3d10f7 100644
--- a/Lib/test/test_re.py
+++ b/Lib/test/test_re.py
@@ -428,7 +428,7 @@ class ReTests(unittest.TestCase):
self.assertEqual(m.span(), span)
def test_re_escape(self):
- alnum_chars = string.ascii_letters + string.digits
+ alnum_chars = string.ascii_letters + string.digits + '_'
p = ''.join(chr(i) for i in range(256))
for c in p:
if c in alnum_chars:
@@ -441,7 +441,7 @@ class ReTests(unittest.TestCase):
self.assertMatch(re.escape(p), p)
def test_re_escape_byte(self):
- alnum_chars = (string.ascii_letters + string.digits).encode('ascii')
+ alnum_chars = (string.ascii_letters + string.digits + '_').encode('ascii')
p = bytes(range(256))
for i in p:
b = bytes([i])