From 166746c142a88d4f27541f6102154cc592f208ee Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 3 Jul 2007 15:39:16 +0000 Subject: [PATCH] There is no longer a 'c' array typecode. --- Lib/test/test_re.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(), ()) -- 2.50.1