(self, size)
| 181 | |
| 182 | @bigmemtest(size=_2G, memuse=2) |
| 183 | def test_isdigit(self, size): |
| 184 | _ = self.from_latin1 |
| 185 | SUBSTR = _('123456') |
| 186 | s = _('9') * size + SUBSTR |
| 187 | self.assertTrue(s.isdigit()) |
| 188 | s += _('z') |
| 189 | self.assertFalse(s.isdigit()) |
| 190 | |
| 191 | @bigmemtest(size=_2G, memuse=2) |
| 192 | def test_islower(self, size): |
nothing calls this directly
no test coverage detected