(self)
| 752 | or category == 'Zs')) |
| 753 | |
| 754 | def test_isalnum(self): |
| 755 | super().test_isalnum() |
| 756 | for ch in ['\U00010401', '\U00010427', '\U00010429', '\U0001044E', |
| 757 | '\U0001D7F6', '\U00011066', '\U000104A0', '\U0001F107']: |
| 758 | self.assertTrue(ch.isalnum(), '{!a} is alnum.'.format(ch)) |
| 759 | |
| 760 | def test_isalpha(self): |
| 761 | super().test_isalpha() |
nothing calls this directly
no test coverage detected