diff options
author | Guido van Rossum <guido@python.org> | 2007-07-03 15:39:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-03 15:39:16 (GMT) |
commit | 166746c142a88d4f27541f6102154cc592f208ee (patch) | |
tree | bd6592df9169e5a7ab49e2df548ffc9c717eec23 | |
parent | a1cdfd9dc25648bf8db58c32f169baf8d5c73fc3 (diff) | |
download | cpython-166746c142a88d4f27541f6102154cc592f208ee.zip cpython-166746c142a88d4f27541f6102154cc592f208ee.tar.gz cpython-166746c142a88d4f27541f6102154cc592f208ee.tar.bz2 |
There is no longer a 'c' array typecode.
-rw-r--r-- | Lib/test/test_re.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index 1f4505f..f69dde5 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(), ()) |