mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00

* Add test_frozenmain to test_embed * Add Programs/test_frozenmain.py * Add Programs/freeze_test_frozenmain.py * Add Programs/test_frozenmain.h * Add make regen-test-frozenmain * Add test_frozenmain command to Programs/_testembed * _testembed.c: add error(msg) function
9 lines
314 B
Python
9 lines
314 B
Python
import sys
|
|
import _testinternalcapi
|
|
|
|
print("Frozen Hello World")
|
|
print("sys.argv", sys.argv)
|
|
config = _testinternalcapi.get_configs()['config']
|
|
print(f"config program_name: {config['program_name']}")
|
|
print(f"config executable: {config['executable']}")
|
|
print(f"config use_environment: {config['use_environment']}")
|