summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_embed.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-38614: Use support timeout constants (GH-17572)HEADmasterVictor Stinner2019-12-111-5/+13
* bpo-20443: No longer make sys.argv[0] absolute for script (GH-17534)Victor Stinner2019-12-091-3/+2
* bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)Victor Stinner2019-09-291-2/+26
* bpo-38234: Py_Initialize() sets global path configuration (GH-16421)Victor Stinner2019-09-261-0/+38
* bpo-38234: Fix test_embed.test_init_setpath_config() on FreeBSD (GH-16406)Victor Stinner2019-09-261-7/+6
* bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402)Victor Stinner2019-09-261-8/+51
* bpo-38234: Fix test_embed pathconfig tests (GH-16390)Victor Stinner2019-09-251-0/+5
* bpo-38234: test_embed: test pyvenv.cfg and pybuilddir.txt (GH-16366)Victor Stinner2019-09-251-15/+165
* bpo-38234: Add tests for Python init path config (GH-16358)Victor Stinner2019-09-241-11/+78
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431)Victor Stinner2019-08-231-0/+17
* bpo-36763: Implement PyWideStringList_Insert() of PEP 587 (GH-15423)Victor Stinner2019-08-231-6/+10
* bpo-37363: Add audit events on startup for the run commands (GH-14524)Steve Dower2019-07-011-4/+36
* bpo-36763: Use PyConfig_Clear() (GH-14445)Victor Stinner2019-07-011-3/+12
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+0
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-7/+10
* bpo-20443: _PyConfig_Read() gets the absolute path of run_filename (GH-14053)Victor Stinner2019-06-251-2/+3
* Fix test_embed.test_pre_initialization_sys_options() env vars (GH-14172)Victor Stinner2019-06-171-6/+12
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-78/+78
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+11
* bpo-36763: Fix _PyPreConfig_InitCompatConfig() utf8_mode (GH-13518)Victor Stinner2019-05-231-4/+34
* bpo-36763: Rename private Python initialization functions (GH-13511)Victor Stinner2019-05-221-31/+34
* bpo-36763: Add _PyPreConfig._config_init (GH-13481)Victor Stinner2019-05-221-49/+64
* bpo-36763: Fix encoding/locale tests in test_embed (GH-13443)Victor Stinner2019-05-201-87/+103
* bpo-36763: Fix Python preinitialization (GH-13432)Victor Stinner2019-05-201-22/+74
* bpo-36763: Remove _PyCoreConfig.dll_path (GH-13402)Victor Stinner2019-05-181-3/+0
* bpo-36763: Use _PyCoreConfig_InitPythonConfig() (GH-13398)Victor Stinner2019-05-181-40/+65
* bpo-36945: Add _PyPreConfig.configure_locale (GH-13368)Victor Stinner2019-05-171-4/+30
* bpo-36763: Add _PyCoreConfig_InitPythonConfig() (GH-13388)Victor Stinner2019-05-171-7/+39
* bpo-36763: Add PyMemAllocatorName (GH-13387)Victor Stinner2019-05-171-6/+9
* bpo-36763: Remove _PyCoreConfig.program (GH-13373)Victor Stinner2019-05-171-5/+0
* bpo-36763: Add _PyCoreConfig.configure_c_stdio (GH-13363)Victor Stinner2019-05-161-0/+4
* bpo-36763: Add _Py_InitializeMain() (GH-13362)Victor Stinner2019-05-161-12/+31
* bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361)Victor Stinner2019-05-161-0/+9
* bpo-36763: InitConfigTests tests all core config (GH-13331)Victor Stinner2019-05-151-19/+26
* bpo-36763: Add test for _PyCoreConfig_SetString() (GH-13275)Victor Stinner2019-05-141-7/+35
* bpo-36763: Remove _PyCoreConfig._init_main (GH-13066)Victor Stinner2019-05-021-5/+8
* bpo-36763: Make _PyCoreConfig.check_hash_pycs_mode public (GH-13052)Victor Stinner2019-05-021-2/+2
* bpo-36471: Add _Py_RunMain() (GH-12618)Victor Stinner2019-03-291-2/+13
* bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)Victor Stinner2019-03-271-4/+1
* bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-271-0/+1
* bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-271-29/+0
* bpo-36301: Test Python init with isolated (GH-12569)Victor Stinner2019-03-261-0/+20
* bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-261-8/+9
* bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-261-17/+28
* bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)Victor Stinner2019-03-251-38/+74
* bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347)Victor Stinner2019-03-151-1/+1
* bpo-36142: PYTHONMALLOC overrides PYTHONDEV (GH-12191)Victor Stinner2019-03-061-2/+8
* bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187)Victor Stinner2019-03-061-3/+2
* bpo-36142: Add _PyMem_GetDebugAllocatorsName() (GH-12185)Victor Stinner2019-03-051-2/+3
* bpo-36142: Add _PyPreConfig.allocator (GH-12181)Victor Stinner2019-03-051-23/+29