summaryrefslogtreecommitdiffstats
path: root/Python/pathconfig.c
Commit message (Expand)AuthorAgeFilesLines
* gh-117987: Restore several functions removed in Python 3.13 alpha 1 (GH-117993)Victor Stinner2024-04-181-4/+2
* gh-110079: Remove extern "C" { ...} in C code (#110080)Victor Stinner2023-09-291-9/+0
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-061-4/+6
* gh-105145: Remove old functions to config Python init (#105154)Victor Stinner2023-06-011-25/+6
* gh-98978: Fix Py_SetPythonHome(NULL) (#99066)Victor Stinner2022-11-031-0/+6
* gh-91985: Ensure in-tree builds override platstdlib_dir in every path calcula...neonene2022-06-161-1/+22
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-031-490/+143
* bpo-45471: Do not set PyConfig.stdlib_dir in Py_SetPythonHome(). (gh-28954)Eric Snow2021-10-141-4/+1
* Fix typos in the Python directory (GH-28767)Christian Clauss2021-10-061-1/+1
* bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow2021-09-281-1/+30
* bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)Victor Stinner2020-11-101-74/+15
* bpo-29778: test_embed tests the path configuration (GH-21306)Victor Stinner2020-07-071-0/+74
* bpo-29778: Ensure python3.dll is loaded from correct locations when Python is...Steve Dower2020-07-061-46/+0
* bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21...Gregory P. Smith2020-06-221-1/+1
* bpo-40268: Remove unused osdefs.h includes (GH-19532)Victor Stinner2020-04-151-1/+1
* bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)Victor Stinner2020-04-151-1/+1
* bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner2020-04-141-1/+3
* bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)Victor Stinner2020-03-251-4/+10
* bpo-39882: Py_FatalError() logs the function name (GH-18819)Victor Stinner2020-03-061-4/+4
* bpo-39270: Remove dead assignment from config_init_module_search_paths (GH-17...Alex Henrie2020-01-091-2/+1
* bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818)Anthony Wee2020-01-061-1/+1
* bpo-38353: getpath.c: allocates strings on the heap (GH-16585)Victor Stinner2019-10-041-9/+20
* bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)Victor Stinner2019-10-011-7/+2
* bpo-38304: Remove PyConfig.struct_size (GH-16500) (GH-16508)Victor Stinner2019-10-011-1/+0
* bpo-38304: Add PyConfig.struct_size (GH-16451)Victor Stinner2019-09-281-1/+6
* bpo-38234: Py_Initialize() sets global path configuration (GH-16421)Victor Stinner2019-09-261-7/+22
* bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402)Victor Stinner2019-09-261-5/+28
* bpo-38234: Py_SetPath() uses the program full path (GH-16357)Victor Stinner2019-09-241-4/+7
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335)Victor Stinner2019-09-231-149/+166
* bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298)Victor Stinner2019-09-201-0/+7
* bpo-38234: Remove _PyPathConfig.dll_path (GH-16307)Victor Stinner2019-09-201-62/+43
* bpo-23878: Remove an unneeded fseek() call in _Py_FindEnvConfigValue() (GH-15...Zackery Spytz2019-08-281-1/+0
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-0/+30
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-108/+106
* bpo-36763: Add _PyPreConfig._config_init (GH-13481)Victor Stinner2019-05-221-1/+1
* bpo-36763: Remove _PyCoreConfig.dll_path (GH-13402)Victor Stinner2019-05-181-13/+3
* bpo-36763: Add _PyCoreConfig_InitPythonConfig() (GH-13388)Victor Stinner2019-05-171-1/+2
* bpo-36763: _PyInitError always use int for exitcode (GH-13360)Victor Stinner2019-05-161-7/+11
* bpo-36763: Add _PyCoreConfig_SetArgv() (GH-13030)Victor Stinner2019-05-011-1/+1
* bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-261-1/+1
* bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-261-1/+1
* bpo-36301: Cleanup preconfig code (GH-12535)Victor Stinner2019-03-251-1/+1
* bpo-36236: Fix _PyPathConfig_ComputeSysPath0() for empty argv (GH-12441)Victor Stinner2019-03-191-55/+63
* bpo-36236: Handle removed cwd at Python init (GH-12424)Victor Stinner2019-03-191-8/+23
* bpo-36352: Avoid hardcoded MAXPATHLEN size in getpath.c (GH-12423)Victor Stinner2019-03-191-6/+8
* bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422)Victor Stinner2019-03-191-1/+1
* bpo-36301: Fix Py_Main() memory leaks (GH-12420)Victor Stinner2019-03-181-0/+5
* bpo-36301: Add _PyWstrList structure (GH-12343)Victor Stinner2019-03-151-21/+19
* bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173)Victor Stinner2019-03-051-1/+1
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-051-1/+1