]> granicus.if.org Git - python/commitdiff
There is no longer a 'c' array typecode.
authorGuido van Rossum <guido@python.org>
Tue, 3 Jul 2007 15:39:16 +0000 (15:39 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 3 Jul 2007 15:39:16 +0000 (15:39 +0000)
Lib/test/test_re.py

index 1f4505ff967d9b2a8117dcafdb2335650220d663..f69dde5ce367b6d466e7a4cbcdd29f74f8b561ca 100644 (file)
@@ -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(), ())