(self)
| 2535 | self.assertEqual(s, "3") |
| 2536 | |
| 2537 | def test_getnewargs(self): |
| 2538 | text = 'abc' |
| 2539 | args = text.__getnewargs__() |
| 2540 | self.assertIsNot(args[0], text) |
| 2541 | self.assertEqual(args[0], text) |
| 2542 | self.assertEqual(len(args), 1) |
| 2543 | |
| 2544 | def test_compare(self): |
| 2545 | # Issue #17615 |
nothing calls this directly
no test coverage detected