(self)
| 404 | return [[1, 2, 3], [4, 5, 6]] |
| 405 | |
| 406 | def test_in_from_2seq(self): |
| 407 | a = self.array([2], intent.in_, self.num2seq) |
| 408 | assert not a.has_shared_memory() |
| 409 | |
| 410 | def test_in_from_2casttype(self): |
| 411 | for t in self.type.cast_types(): |
nothing calls this directly
no test coverage detected