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 416915e commit 1c2d877Copy full SHA for 1c2d877
tests/run_compound.py
@@ -89,7 +89,8 @@ def main():
89
log(f'{platform.platform()=}')
90
log(f'{platform.python_version()=}')
91
log(f'{platform.system()=}')
92
- log(f'{platform.uname()=}')
+ if sys.implementation.name != 'graalpy':
93
+ log(f'{platform.uname()=}')
94
log(f'{sys.executable=}')
95
log(f'{sys.version=}')
96
log(f'{sys.version_info=}')
0 commit comments