[Python-3000-checkins] r56159 - python/branches/py3k-struni/Lib/test/test_re.py

guido.van.rossum python-3000-checkins at python.org
Tue Jul 3 17:39:16 CEST 2007


Author: guido.van.rossum
Date: Tue Jul  3 17:39:16 2007
New Revision: 56159

Modified:
   python/branches/py3k-struni/Lib/test/test_re.py
Log:
There is no longer a 'c' array typecode.

Modified: python/branches/py3k-struni/Lib/test/test_re.py
==============================================================================
--- python/branches/py3k-struni/Lib/test/test_re.py	(original)
+++ python/branches/py3k-struni/Lib/test/test_re.py	Tue Jul  3 17:39:16 2007
@@ -596,7 +596,7 @@
     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(), ())


More information about the Python-3000-checkins mailing list