(self)
| 1782 | |
| 1783 | @warnings_helper.ignore_warnings(category=DeprecationWarning) # gh-80480 array('u') |
| 1784 | def test_empty_array(self): |
| 1785 | # SF buf 1647541 |
| 1786 | import array |
| 1787 | for typecode in 'bBhuwHiIlLfd': |
| 1788 | a = array.array(typecode) |
| 1789 | self.assertIsNone(re.compile(b"bla").match(a)) |
| 1790 | self.assertEqual(re.compile(b"").match(a).groups(), ()) |
| 1791 | |
| 1792 | def test_inline_flags(self): |
| 1793 | # Bug #1700 |
nothing calls this directly
no test coverage detected