(self, size)
| 616 | |
| 617 | @bigmemtest(size=_2G, memuse=ucs4_char_size * 3 + ascii_char_size * 2) |
| 618 | def test_swapcase(self, size): |
| 619 | self._test_swapcase(size) |
| 620 | |
| 621 | # Many codecs convert to the legacy representation first, explaining |
| 622 | # why we add 'ucs4_char_size' to the 'memuse' below. |
nothing calls this directly
no test coverage detected