(self)
| 218 | del a # Avoid pyflakes unused variable warning. |
| 219 | |
| 220 | def test_multiple_arrays(self): |
| 221 | a = np.array([[1, 2], [3, 4]], float) |
| 222 | b = np.array([[1 + 2j, 2 + 7j], [3 - 6j, 4 + 12j]], complex) |
| 223 | self.roundtrip(a, b) |
| 224 | |
| 225 | def test_named_arrays(self): |
| 226 | a = np.array([[1, 2], [3, 4]], float) |