summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934)Victor Stinner2019-05-104-260/+292
* bpo-36737: Use the module state C-API for warnings. (gh-13159)Eric Snow2019-05-103-120/+203
* bpo-35983: skip trashcan for subclasses (GH-11841)Jeroen Demeyer2019-05-102-8/+8
* bpo-36851: Clean the frame stack if the execution ends with a return and the ...Pablo Galindo2019-05-091-7/+9
* bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith2019-05-085-45/+142
* bpo-24048: Save the live exception during import.c's remove_module() (GH-13005)Zackery Spytz2019-05-081-3/+7
* bpo-36594: Fix incorrect use of %p in format strings (GH-12769)Zackery Spytz2019-05-062-6/+6
* bpo-36791: Safer detection of integer overflow in sum(). (GH-13080)Serhiy Storchaka2019-05-051-3/+5
* bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)Victor Stinner2019-05-043-3/+2
* bpo-36763: Remove _PyCoreConfig._init_main (GH-13066)Victor Stinner2019-05-022-3/+1
* bpo-36763: _PyCoreConfig_SetPyArgv() preinitializes Python (GH-13037)Victor Stinner2019-05-022-17/+42
* bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062)Victor Stinner2019-05-024-133/+93
* bpo-36775: Add _PyUnicode_InitEncodings() (GH-13057)Victor Stinner2019-05-021-90/+15
* bpo-36775: Add _Py_FORCE_UTF8_FS_ENCODING macro (GH-13056)Victor Stinner2019-05-023-55/+36
* bpo-36763: Make _PyCoreConfig.check_hash_pycs_mode public (GH-13052)Victor Stinner2019-05-022-10/+22
* bpo-36763: Add _PyCoreConfig_SetString() (GH-13035)Victor Stinner2019-05-012-166/+241
* bpo-36763: Rework _PyInitError API (GH-13031)Victor Stinner2019-05-015-27/+26
* bpo-36763: Add _PyCoreConfig_SetArgv() (GH-13030)Victor Stinner2019-05-013-13/+45
* bpo-36763: Fix Py_SetStandardStreamEncoding() (GH-13028)Victor Stinner2019-04-301-3/+4
* bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo2019-04-2911-4548/+5023
* Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006)Victor Stinner2019-04-292-17/+10
* bpo-36356: Destroy the GIL at exit (GH-12453)Victor Stinner2019-04-292-10/+17
* bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly ...Joannah Nanjekye2019-04-291-12/+16
* Fix typo in 'tandem' word (GH-12998) (GH-12998)Andrey2019-04-291-1/+1
* bpo-36356: pymain_exit_error() only call pymain_free() for exit (GH-12968)Victor Stinner2019-04-261-1/+1
* bpo-36724: Add _PyWarnings_Fini() (#12963)Victor Stinner2019-04-262-17/+34
* bpo-36710: Fix compiler warning on PyThreadState_Delete() (GH-12962)Victor Stinner2019-04-261-1/+1
* bpo-36710: Add runtime parameter in gcmodule.c (GH-12958)Victor Stinner2019-04-261-1/+1
* bpo-36710: Add runtime variable in pystate.c (GH-12956)Victor Stinner2019-04-251-142/+219
* bpo-36722: Debug build loads libraries built in release mode (GH-12952)Victor Stinner2019-04-251-2/+3
* bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939)Victor Stinner2019-04-244-68/+92
* bpo-36710: Add runtime variable to Py_FinalizeEx() (GH-12937)Victor Stinner2019-04-242-20/+22
* bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)Victor Stinner2019-04-241-33/+32
* bpo-36710: Add runtime parameter to _PyThreadState_Init() (GH-12935)Victor Stinner2019-04-241-64/+74
* use `const` in graminit.c (GH-12713)tyomitch2019-04-231-410/+410
* bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)Victor Stinner2019-04-171-0/+4
* bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852)Victor Stinner2019-04-171-15/+23
* bpo-36623: Clean parser headers and include files (GH-12253)Pablo Galindo2019-04-132-3/+0
* bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()...Eric Snow2019-04-124-118/+97
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12...Eric Snow2019-04-124-97/+118
* Fix typos in compile.c comments (GH-12752)Simeon2019-04-091-2/+2
* bpo-34373: Fix time.mktime() on AIX (GH-12726)Victor Stinner2019-04-091-10/+7
* bpo-36301: Fix _PyPreConfig_Read() compiler warning (GH-12695)Victor Stinner2019-04-051-4/+5
* bpo-36495: Fix two out-of-bounds array reads (GH-12641)Brad Larsen2019-04-011-2/+2
* bpo-36085: Enable better DLL resolution on Windows (GH-12302)Steve Dower2019-03-291-4/+6
* bpo-36471: Add _Py_RunMain() (GH-12618)Victor Stinner2019-03-291-98/+89
* bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)Victor Stinner2019-03-272-8/+18
* bpo-36447, bpo-36447: Fix refleak in _PySys_InitMain() (GH-12586)Pablo Galindo2019-03-271-0/+1
* bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576)Victor Stinner2019-03-274-83/+116
* bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-273-11/+17