diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-05-17 09:12:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-17 09:12:09 (GMT) |
commit | fed02e15b39b6f1521ea21654be5fc0757a8720a (patch) | |
tree | 976c7abd1f4a66a97aba89de3688405b9a5161b3 /Programs | |
parent | 245f528a92d7748dbd7acf9cba860153c143bbfe (diff) | |
download | cpython-fed02e15b39b6f1521ea21654be5fc0757a8720a.zip cpython-fed02e15b39b6f1521ea21654be5fc0757a8720a.tar.gz cpython-fed02e15b39b6f1521ea21654be5fc0757a8720a.tar.bz2 |
bpo-36763: Remove _PyCoreConfig.program (GH-13373)
Use _PyCoreConfig.program_name instead.
Diffstat (limited to 'Programs')
-rw-r--r-- | Programs/_testembed.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c index 87d159f..b1b7c6e 100644 --- a/Programs/_testembed.c +++ b/Programs/_testembed.c @@ -433,8 +433,6 @@ static int test_init_from_config(void) config.argv.length = Py_ARRAY_LENGTH(argv); config.argv.items = argv; - config.program = L"conf_program"; - static wchar_t* xoptions[3] = { L"core_xoption1=3", L"core_xoption2=", @@ -532,7 +530,6 @@ static int test_init_dont_parse_argv(void) L"arg2", }; - config.program = L"program"; config.program_name = L"./_testembed"; config.argv.length = Py_ARRAY_LENGTH(argv); |