summaryrefslogtreecommitdiff
path: root/Python/pylifecycle.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852) (GH-12863)Miss Islington (bot)2019-04-171-15/+23
* bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)Miss Islington (bot)2019-03-251-2/+4
* bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)Miss Islington (bot)2018-12-101-0/+6
* bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672) (GH-10673)Victor Stinner2018-11-231-4/+7
* Revert "bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)" (GH...Victor Stinner2018-11-221-2/+2
* bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)Miss Islington (bot)2018-11-161-2/+2
* bpo-26558: Fix Py_FatalError() with GIL released (GH-10267)Miss Islington (bot)2018-10-311-10/+25
* bpo-34403: Fix initfsencoding() for ASCII (GH-10233)Victor Stinner2018-10-301-0/+4
* Revert "[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off...Victor Stinner2018-09-191-2/+2
* [3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by defa...Victor Stinner2018-09-171-2/+2
* _Py_CoerceLegacyLocale() restores LC_CTYPE on fail (GH-9044) (GH-9046)Victor Stinner2018-09-031-1/+13
* [3.7] bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986) (GH-8987)Victor Stinner2018-08-291-12/+34
* bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) (GH-8981)Victor Stinner2018-08-291-4/+6
* [3.7] bpo-34247: Fix Python 3.7 initialization (#8659)Victor Stinner2018-08-051-46/+110
* bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) (GH-8352)Miss Islington (bot)2018-07-211-3/+20
* bpo-33932: Calling Py_Initialize() twice does nothing (GH-7845)Miss Islington (bot)2018-06-221-0/+5
* bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6...Miss Islington (bot)2018-04-241-5/+0
* rename _imp initialization function to follow conventions (#5432)Benjamin Peterson2018-01-291-1/+1
* bpo-20891: Py_Initialize() now creates the GIL (#4700)Victor Stinner2018-01-291-0/+4
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-221-0/+6
* closes bpo-32460: ensure all non-static globals have initializers (#5061)Benjamin Peterson2017-12-311-10/+10
* bpo-32030: Fix usage of memory allocators (#4953)Victor Stinner2017-12-201-5/+29
* bpo-32030: Complete _PyCoreConfig_Read() (#4946)Victor Stinner2017-12-201-13/+11
* bpo-32030: Add _PyCoreConfig.warnoptions (#4936)Victor Stinner2017-12-201-2/+2
* bpo-31901: atexit callbacks should be run at subinterpreter shutdown (#4611)Marcel Plch2017-12-201-11/+22
* bpo-32030: Cleanup pymain_main() (#4935)Victor Stinner2017-12-201-2/+2
* bpo-32030: Fix compiler warnings (#4921)Victor Stinner2017-12-191-2/+10
* bpo-29240, bpo-32030: Py_Main() re-reads config if encoding changes (#4899)Victor Stinner2017-12-161-52/+28
* bpo-32030: Add _PyMainInterpreterConfig.executable (#4876)Victor Stinner2017-12-151-30/+2
* bpo-32030: Add _PyCoreConfig_Copy() (#4874)Victor Stinner2017-12-151-84/+41
* bpo-32030: Add _PyMainInterpreterConfig.warnoptions (#4855)Victor Stinner2017-12-141-7/+18
* bpo-32030: Rewrite _PyMainInterpreterConfig (#4854)Victor Stinner2017-12-141-19/+23
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-131-9/+20
* Test atexit shutdown mechanism in a subprocess (#4828)Antoine Pitrou2017-12-131-0/+2
* bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...Serhiy Storchaka2017-12-121-3/+4
* bpo-32030: Add pymain_get_global_config() (#4735)Victor Stinner2017-12-061-7/+11
* bpo-32030: pass interp to _PyImport_Init() (#4736)Victor Stinner2017-12-061-1/+1
* bpo-32030: Simplify _PyCoreConfig_INIT macro (#4728)Victor Stinner2017-12-051-7/+2
* Revert "bpo-32197: Try to fix a compiler error on OS X introduced in bpo-3203...Victor Stinner2017-12-041-58/+6
* bpo-32197: Try to fix a compiler error on OS X introduced in bpo-32030. (#4681)Serhiy Storchaka2017-12-021-6/+58
* bpo-32030: _PyPathConfig_Init() sets home and program_name (#4673)Victor Stinner2017-12-021-1/+6
* bpo-32030: Add Python/pathconfig.c (#4668)Victor Stinner2017-12-011-55/+0
* bpo-32030: Don't call _PyPathConfig_Fini() in Py_FinalizeEx() (#4667)Victor Stinner2017-12-011-2/+0
* bpo-32030: Fix _Py_InitializeEx_Private() (#4649)Victor Stinner2017-11-301-6/+13
* bpo-32030: Rework memory allocators (#4625)Victor Stinner2017-11-291-1/+1
* mark fatal_error as noreturn (#4563)Benjamin Peterson2017-11-251-1/+1
* bpo-32030: Add _PyPathConfig_Init() (#4551)Victor Stinner2017-11-251-9/+19
* bpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)Victor Stinner2017-11-251-4/+18
* bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)Victor Stinner2017-11-241-26/+19
* bpo-32125: Remove Py_UseClassExceptionsFlag flag (#4544)Victor Stinner2017-11-241-1/+0