(self)
| 727 | self.assertFalse('\U0001F46F'.isupper()) |
| 728 | |
| 729 | def test_istitle(self): |
| 730 | super().test_istitle() |
| 731 | self.checkequalnofix(True, '\u1FFc', 'istitle') |
| 732 | self.checkequalnofix(True, 'Greek \u1FFcitlecases ...', 'istitle') |
| 733 | |
| 734 | # non-BMP, uppercase + lowercase |
| 735 | self.assertTrue('\U00010401\U00010429'.istitle()) |
| 736 | self.assertTrue('\U00010427\U0001044E'.istitle()) |
| 737 | # apparently there are no titlecased (Lt) non-BMP chars in Unicode 6 |
| 738 | for ch in ['\U00010429', '\U0001044E', '\U0001F40D', '\U0001F46F']: |
| 739 | self.assertFalse(ch.istitle(), '{!a} is not title'.format(ch)) |
| 740 | |
| 741 | def test_isspace(self): |
| 742 | super().test_isspace() |
nothing calls this directly
no test coverage detected