()
| 29 | # }}} |
| 30 | import numpy as np |
| 31 | def simple_vars(): |
| 32 | I = 42 |
| 33 | F = np.e |
| 34 | S = 'Red' |
| 35 | L = [1, 2.2, 'green'] |
| 36 | D = {'A' : 65, 'B' : 66, 'Z' : 90} |
| 37 | T = (225, 'blue') |
| 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', |
nothing calls this directly
no outgoing calls
no test coverage detected