()
| 38 | N = F*np.arange(12).reshape(3,4) |
| 39 | return I, F, S, L, D, T, N |
| 40 | def nested_var(): |
| 41 | N = np.arange(12).reshape(3,4) |
| 42 | return [1, 2.2, 'green', |
| 43 | {'A' : 65, 'B' : 66, |
| 44 | 'N' : N, |
| 45 | 'Z' : (225, 'blue')}, |
| 46 | 27.8] |
| 47 | def arrays(): |
| 48 | arr_int8 = np.array([1, 2], dtype=np.int8) |
| 49 | arr_uint8 = np.array([1, 2], dtype=np.uint8) |
nothing calls this directly
no outgoing calls
no test coverage detected