(self)
| 473 | assert copy == orig, (copy, orig) |
| 474 | |
| 475 | def testCopyNested(self): |
| 476 | nested = [1, 2, 3, [4, 5, 6], 7, 8, 9] |
| 477 | self.data.put_object(nested) |
| 478 | dst = Data() |
| 479 | dst.copy(self.data) |
| 480 | assert dst.format() == self.data.format() |
| 481 | |
| 482 | def testCopyNestedArray(self): |
| 483 | nested = [Array(UNDESCRIBED, Data.LIST, |
nothing calls this directly
no test coverage detected