(text)
| 131 | f'stderr={stderr!r}') |
| 132 | |
| 133 | def check_repr(text): |
| 134 | try: |
| 135 | text.encode(encoding) |
| 136 | except UnicodeEncodeError: |
| 137 | self.assertGdbRepr(text, ascii(text)) |
| 138 | else: |
| 139 | self.assertGdbRepr(text) |
| 140 | |
| 141 | self.assertGdbRepr('') |
| 142 | self.assertGdbRepr('And now for something hopefully the same') |
nothing calls this directly
no test coverage detected