There is no longer a 'c' array typecode.

This commit is contained in:
Guido van Rossum 2007-07-03 15:39:16 +00:00
parent a1cdfd9dc2
commit 166746c142

View 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(), ())