mirror of
https://github.com/python/cpython.git
synced 2025-10-22 06:32:43 +00:00
There is no longer a 'c' array typecode.
This commit is contained in:
parent
a1cdfd9dc2
commit
166746c142
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ class ReTests(unittest.TestCase):
|
||||||
def test_empty_array(self):
|
def test_empty_array(self):
|
||||||
# SF buf 1647541
|
# SF buf 1647541
|
||||||
import array
|
import array
|
||||||
for typecode in 'cbBuhHiIlLfd':
|
for typecode in 'bBuhHiIlLfd':
|
||||||
a = array.array(typecode)
|
a = array.array(typecode)
|
||||||
self.assertEqual(re.compile("bla").match(a), None)
|
self.assertEqual(re.compile("bla").match(a), None)
|
||||||
self.assertEqual(re.compile("").match(a).groups(), ())
|
self.assertEqual(re.compile("").match(a).groups(), ())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue