(self, size)
| 172 | |
| 173 | @bigmemtest(size=_2G, memuse=2) |
| 174 | def test_isalpha(self, size): |
| 175 | _ = self.from_latin1 |
| 176 | SUBSTR = _('zzzzzzz') |
| 177 | s = _('a') * size + SUBSTR |
| 178 | self.assertTrue(s.isalpha()) |
| 179 | s += _('.') |
| 180 | self.assertFalse(s.isalpha()) |
| 181 | |
| 182 | @bigmemtest(size=_2G, memuse=2) |
| 183 | def test_isdigit(self, size): |
nothing calls this directly
no test coverage detected