(self)
| 15 | self.execute('import numpy') |
| 16 | |
| 17 | def time_numpy_inspect(self): |
| 18 | # What are the savings from avoiding to import the inspect module? |
| 19 | self.execute('import numpy, inspect') |
| 20 | |
| 21 | def time_fft(self): |
| 22 | self.execute('from numpy import fft') |