()
| 7 | |
| 8 | _Arch = None |
| 9 | def GetArch(): |
| 10 | global _Arch |
| 11 | |
| 12 | if _Arch == None: |
| 13 | _Arch = subprocess.check_output(['uname', '-m']).decode("utf-8").strip() |
| 14 | return _Arch |
| 15 | |
| 16 | _Distro = None |
| 17 | def GetDistro(): |
no outgoing calls
no test coverage detected