We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2a6151 commit e1c9fd4Copy full SHA for e1c9fd4
1 file changed
src/testbed/app.py
@@ -1,4 +1,5 @@
1
import importlib
2
+import os
3
import platform
4
import sys
5
@@ -8,6 +9,21 @@ def main():
8
9
print(f"Python {platform.python_version()} Verification Suite")
10
print(f"Running on {platform.platform()}")
11
print("=" * 80)
12
+ print(f"{sys.platform=}")
13
+ print(f"{sys.implementation=}")
14
+ print("-" * 80)
15
+ print(f"{platform.architecture()=}")
16
+ print(f"{platform.machine()=}")
17
+ print(f"{platform.node()=}")
18
+ print(f"{platform.processor()=}")
19
+ print(f"{platform.release()=}")
20
+ print(f"{platform.system()=}")
21
+ print(f"{platform.version()=}")
22
+ print(f"{platform.uname()=}")
23
24
+ print(f"{os.name=}")
25
+ print(f"{os.uname()=}")
26
+ print("=" * 80)
27
28
# Load the platform module
29
if hasattr(sys, "getandroidapilevel"):
0 commit comments