(self)
| 759 | or category == 'Zs')) |
| 760 | |
| 761 | def test_isalnum(self): |
| 762 | super().test_isalnum() |
| 763 | for ch in ['\U00010401', '\U00010427', '\U00010429', '\U0001044E', |
| 764 | '\U0001D7F6', '\U00011066', '\U000104A0', '\U0001F107']: |
| 765 | self.assertTrue(ch.isalnum(), '{!a} is alnum.'.format(ch)) |
| 766 | |
| 767 | def test_isalpha(self): |
| 768 | super().test_isalpha() |
nothing calls this directly
no test coverage detected