Returns the numpy.distutils config command instance.
(self)
| 1807 | return s |
| 1808 | |
| 1809 | def get_config_cmd(self): |
| 1810 | """ |
| 1811 | Returns the numpy.distutils config command instance. |
| 1812 | """ |
| 1813 | cmd = get_cmd('config') |
| 1814 | cmd.ensure_finalized() |
| 1815 | cmd.dump_source = 0 |
| 1816 | cmd.noisy = 0 |
| 1817 | old_path = os.environ.get('PATH') |
| 1818 | if old_path: |
| 1819 | path = os.pathsep.join(['.', old_path]) |
| 1820 | os.environ['PATH'] = path |
| 1821 | return cmd |
| 1822 | |
| 1823 | def get_build_temp_dir(self): |
| 1824 | """ |
no test coverage detected