From: Guido van Rossum Date: Tue, 3 Jul 2007 15:39:16 +0000 (+0000) Subject: There is no longer a 'c' array typecode. X-Git-Tag: v3.0a1~734 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=166746c142a88d4f27541f6102154cc592f208ee;p=python There is no longer a 'c' array typecode. --- diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index 1f4505ff96..f69dde5ce3 100644 --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -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(), ())