()
| 405 | |
| 406 | |
| 407 | def get_platform(): |
| 408 | if sys.platform.startswith("linux"): |
| 409 | return "linux" |
| 410 | elif sys.platform.startswith("win32"): |
| 411 | return "win32" |
| 412 | elif sys.platform.startswith("cygwin"): |
| 413 | return "cygwin" |
| 414 | elif sys.platform.startswith("darwin"): |
| 415 | return "darwin" |
| 416 | else: |
| 417 | return sys.platform |
| 418 | |
| 419 | |
| 420 | def get_mac_version(run_lambda): |
no outgoing calls
no test coverage detected