[3.8] bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423) by miss-islington · Pull Request #15427 · python/cpython

Expand Up @@ -500,7 +500,7 @@ def _get_expected_config(self, env): self.fail(f"fail to decode stdout: {stdout!r}")
def get_expected_config(self, expected_preconfig, expected, env, api, add_path=None): modify_path_cb=None): cls = self.__class__ if cls.EXPECTED_CONFIG is None: cls.EXPECTED_CONFIG = self._get_expected_config(env) Expand Down Expand Up @@ -556,8 +556,9 @@ def get_expected_config(self, expected_preconfig, expected, env, api, prepend_path = expected['pythonpath_env'] if prepend_path is not None: expected['module_search_paths'] = [prepend_path, *expected['module_search_paths']] if add_path is not None: expected['module_search_paths'] = [*expected['module_search_paths'], add_path] if modify_path_cb is not None: expected['module_search_paths'] = expected['module_search_paths'].copy() modify_path_cb(expected['module_search_paths'])
for key in self.COPY_PRE_CONFIG: if key not in expected_preconfig: Expand Down Expand Up @@ -602,7 +603,7 @@ def check_global_config(self, configs): self.assertEqual(configs['global_config'], expected)
def check_all_configs(self, testname, expected_config=None, expected_preconfig=None, add_path=None, stderr=None, expected_preconfig=None, modify_path_cb=None, stderr=None, *, api): env = remove_python_envvars()
Expand All @@ -628,7 +629,7 @@ def check_all_configs(self, testname, expected_config=None,
self.get_expected_config(expected_preconfig, expected_config, env, api, add_path) api, modify_path_cb)
out, err = self.run_embedded_interpreter(testname, env=env) if stderr is None and not expected_config['verbose']: Expand Down Expand Up @@ -893,9 +894,12 @@ def test_init_read_set(self): 'program_name': './init_read_set', 'executable': 'my_executable', } def modify_path(path): path.insert(1, "test_path_insert1") path.append("test_path_append") self.check_all_configs("test_init_read_set", config, api=API_PYTHON, add_path="init_read_set_path") modify_path_cb=modify_path)
def test_init_run_main(self): code = ('import _testinternalcapi, json; ' Expand Down