Find path to vcvarsall.bat
(msvc_version)
| 280 | |
| 281 | |
| 282 | def find_vcvarsall_path(msvc_version): |
| 283 | """Find path to vcvarsall.bat""" |
| 284 | return find_vs_path( |
| 285 | pathlib.Path("VC") / "Auxiliary" / "Build" / "vcvarsall.bat", msvc_version |
| 286 | ) |
| 287 | |
| 288 | |
| 289 | class NoSearchStringError(Exception): |
no test coverage detected