(self)
| 2553 | self.assertEqual(s, "3") |
| 2554 | |
| 2555 | def test_getnewargs(self): |
| 2556 | text = 'abc' |
| 2557 | args = text.__getnewargs__() |
| 2558 | self.assertIsNot(args[0], text) |
| 2559 | self.assertEqual(args[0], text) |
| 2560 | self.assertEqual(len(args), 1) |
| 2561 | |
| 2562 | def test_compare(self): |
| 2563 | # Issue #17615 |
nothing calls this directly
no test coverage detected