Verify the pretty-printing of tuples
(self)
| 159 | check_repr(chr(0x1D121)) |
| 160 | |
| 161 | def test_tuples(self): |
| 162 | 'Verify the pretty-printing of tuples' |
| 163 | self.assertGdbRepr(tuple(), '()') |
| 164 | self.assertGdbRepr((1,), '(1,)') |
| 165 | self.assertGdbRepr(('foo', 'bar', 'baz')) |
| 166 | |
| 167 | @support.requires_resource('cpu') |
| 168 | def test_sets(self): |
nothing calls this directly
no test coverage detected