mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
7 lines
179 B
Python
7 lines
179 B
Python
import sys
|
|
|
|
print(sys.argv)
|
|
assert sys.argv[0].endswith('.py')
|
|
|
|
assert sys.platform == "linux" or sys.platform == "darwin" or sys.platform == "win32" or sys.platform == "unknown"
|