Commit 166746c1 authored by Guido van Rossum's avatar Guido van Rossum

There is no longer a 'c' array typecode.

parent a1cdfd9d
......@@ -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(), ())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment