(self)
| 3431 | self.assert_is_copy(x, y) |
| 3432 | |
| 3433 | def test_newobj_list(self): |
| 3434 | x = MyList([1, 2, 3]) |
| 3435 | x.foo = 42 |
| 3436 | x.bar = "hello" |
| 3437 | for proto in protocols: |
| 3438 | s = self.dumps(x, proto) |
| 3439 | y = self.loads(s) |
| 3440 | self.assert_is_copy(x, y) |
| 3441 | |
| 3442 | def test_newobj_generic(self): |
| 3443 | for proto in protocols: |
nothing calls this directly
no test coverage detected