Check to see if we are running on native Windows, but NOT WSL (which is seen as Linux).
()
| 416 | |
| 417 | |
| 418 | def is_native_windows_or_msys(): |
| 419 | """Check to see if we are running on native Windows, |
| 420 | but NOT WSL (which is seen as Linux).""" |
| 421 | return sys.platform == "msys" or sys.platform == "win32" |
| 422 | |
| 423 | |
| 424 | def is_invalid_windows_platform(): |
no outgoing calls
no test coverage detected
searching dependent graphs…