summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_re.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-03 15:39:16 (GMT)
committerGuido van Rossum <guido@python.org>2007-07-03 15:39:16 (GMT)
commit166746c142a88d4f27541f6102154cc592f208ee (patch)
treebd6592df9169e5a7ab49e2df548ffc9c717eec23 /Lib/test/test_re.py
parenta1cdfd9dc25648bf8db58c32f169baf8d5c73fc3 (diff)
downloadcpython-166746c142a88d4f27541f6102154cc592f208ee.zip
cpython-166746c142a88d4f27541f6102154cc592f208ee.tar.gz
cpython-166746c142a88d4f27541f6102154cc592f208ee.tar.bz2
There is no longer a 'c' array typecode.
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 1f4505f..f69dde5 100644
--- a/Lib/test/test_re.py
+++ b/Lib/test/test_re.py
@@ -596,7 +596,7 @@ class ReTests(unittest.TestCase):
def test_empty_array(self):
# SF buf 1647541
import array
- for typecode in 'cbBuhHiIlLfd':
+ for typecode in 'bBuhHiIlLfd':
a = array.array(typecode)
self.assertEqual(re.compile("bla").match(a), None)
self.assertEqual(re.compile("").match(a).groups(), ())