mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
10 lines
272 B
Python
10 lines
272 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"
|
|
|
|
assert isinstance(sys.builtin_module_names, tuple)
|
|
assert 'sys' in sys.builtin_module_names
|