(self)
| 115 | [[b'1', b''], [b'', b'1']]) |
| 116 | |
| 117 | def test_bool(self): |
| 118 | assert_equal(eye(2, 2, dtype=bool), [[True, False], [False, True]]) |
| 119 | |
| 120 | def test_order(self): |
| 121 | mat_c = eye(4, 3, k=-1) |
nothing calls this directly
no test coverage detected