summaryrefslogtreecommitdiffstats
path: root/PC/getpathp.c
Commit message (Expand)AuthorAgeFilesLines
* [3.9] Fix typos in the Objects directory (GH-28766) (GH-28795)Christian Clauss2021-10-071-1/+1
* [3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)Ɓukasz Langa2021-09-221-1/+1
* bpo-41304: Ensure python3x._pth is loaded on Windows (GH-21495)Miss Islington (bot)2020-07-151-1/+1
* bpo-29778: Ensure python3.dll is loaded from correct locations when Python is...Miss Islington (bot)2020-07-061-77/+73
* bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974)Minmin Gong2020-05-181-1/+1
* bpo-40268: Remove unused osdefs.h includes (GH-19532)Victor Stinner2020-04-151-3/+3
* bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner2020-04-141-1/+0
* bpo-8901: Windows registry path is now ignored with the -E option (GH-18169)Zackery Spytz2020-03-301-2/+5
* Use calloc-based functions, not malloc. (GH-19152)Andy Lester2020-03-251-2/+1
* bpo-39401: Avoid unsafe DLL load on Windows 7 and earlier (GH-18231)Steve Dower2020-01-291-50/+5
* bpo-38353: getpath.c: allocates strings on the heap (GH-16585)Victor Stinner2019-10-041-6/+16
* bpo-38353: Cleanup includes in the internal C API (GH-16548)Victor Stinner2019-10-021-1/+2
* bpo-38322: Fix gotlandmark() of PC/getpathp.c (GH-16489)Victor Stinner2019-09-301-8/+6
* bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402)Victor Stinner2019-09-261-3/+3
* bpo-38234: Cleanup getpath.c (GH-16367)Victor Stinner2019-09-251-15/+15
* bpo-38234: read_pth_file() now returns PyStatus (GH-16338)Victor Stinner2019-09-231-76/+131
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335)Victor Stinner2019-09-231-41/+69
* bpo-38236: Dump path config at first import error (GH-16300)Victor Stinner2019-09-231-3/+2
* bpo-38234: Fix PyConfig_Read() when Py_SetPath() was called (GH-16298)Victor Stinner2019-09-201-3/+6
* bpo-38234: Remove _PyPathConfig.dll_path (GH-16307)Victor Stinner2019-09-201-25/+34
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-3/+17
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-73/+73
* bpo-36763: Remove _PyCoreConfig.dll_path (GH-13402)Victor Stinner2019-05-181-10/+8
* bpo-36763: Add _PyInitError functions (GH-13395)Victor Stinner2019-05-171-0/+1
* bpo-34977: Use venv redirector instead of original python.exe on Windows (GH-...Steve Dower2018-12-101-1/+7
* Revert "bpo-34977: Add Windows App Store package (GH-10245)" (GH-11019)Victor Stinner2018-12-071-7/+1
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-2/+10
* bpo-34977: Add Windows App Store package (GH-10245)Steve Dower2018-12-071-1/+7
* bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...Steve Dower2018-11-181-0/+4
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-1/+1
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-1/+1
* bpo-34217: Use lowercase header for Windows (GH-8453)erikjanss2018-07-251-1/+1
* bpo-34170: Add _PyCoreConfig.isolated (GH-8417)Victor Stinner2018-07-241-2/+2
* bpo-34170: _PyCoreConfig_Read() leaves Py_IsolatedFlag unchanged (GH-8361)Victor Stinner2018-07-211-11/+7
* bpo-34170: Rework _PyCoreConfig_Read() to avoid side effect (GH-8353)Victor Stinner2018-07-211-1/+1
* bpo-32457: Improves handling of denormalized executable path when launching P...Steve Dower2018-02-221-54/+42
* bpo-32030: Add _PyCoreConfig.module_search_paths (#4954)Victor Stinner2018-01-241-0/+3
* bpo-32030: Add _Py_FindEnvConfigValue() (#4963)Victor Stinner2017-12-211-53/+3
* bpo-32030: Rewrite _PyMainInterpreterConfig (#4854)Victor Stinner2017-12-141-23/+22
* bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...Serhiy Storchaka2017-12-121-11/+11
* Revert "bpo-32197: Try to fix a compiler error on OS X introduced in bpo-3203...Victor Stinner2017-12-041-149/+35
* bpo-32197: Try to fix a compiler error on OS X introduced in bpo-32030. (#4681)Serhiy Storchaka2017-12-021-35/+149
* bpo-32030: _PyPathConfig_Init() sets home and program_name (#4673)Victor Stinner2017-12-021-18/+3
* bpo-32030: Add Python/pathconfig.c (#4668)Victor Stinner2017-12-011-118/+1
* bpo-32030: Don't call _PyPathConfig_Fini() in Py_FinalizeEx() (#4667)Victor Stinner2017-12-011-6/+13
* bpo-32030: Fix Py_GetPath(): init program_name (#4665)Victor Stinner2017-12-011-27/+38
* bpo-32030: Cleanup "path config" code (#4663)Victor Stinner2017-12-011-61/+54
* bpo-32030: Add _PyPathConfig_Init() (#4551)Victor Stinner2017-11-251-113/+205
* bpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)Victor Stinner2017-11-241-33/+28
* bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)Victor Stinner2017-11-241-23/+26