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