()
| 97 | |
| 98 | |
| 99 | def temp_file_name(): |
| 100 | # 2019-01-30, 1.17 |
| 101 | warnings.warn('temp_file_name is deprecated since NumPy v1.17, use ' |
| 102 | 'tempfile.mkstemp instead', DeprecationWarning, stacklevel=1) |
| 103 | fo, name = make_temp_file() |
| 104 | fo.close() |
| 105 | return name |
| 106 | |
| 107 | def get_pythonexe(): |
| 108 | pythonexe = sys.executable |
nothing calls this directly
no test coverage detected