(s)
| 316 | self.assertEqual(ascii(a), '{0: {...}}') |
| 317 | # Advanced checks for unicode strings |
| 318 | def _check_uni(s): |
| 319 | self.assertEqual(ascii(s), repr(s)) |
| 320 | _check_uni("'") |
| 321 | _check_uni('"') |
| 322 | _check_uni('"\'') |
nothing calls this directly
no test coverage detected