mirror of
https://github.com/python/cpython.git
synced 2024-11-28 12:31:14 +08:00
There is no longer a 'c' array typecode.
This commit is contained in:
parent
a1cdfd9dc2
commit
166746c142
@ -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(), ())
|
||||
|
Loading…
Reference in New Issue
Block a user