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(), ())
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to