summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-36961: Handle positional-only arguments in uparse.c (GH-13412)Pablo Galindo2019-05-181-6/+16
* Add support for PEP572 in ast_unparse.c (GH-13337)Batuhan Taşkaya2019-05-181-0/+13
* bpo-36763: Remove _PyCoreConfig.dll_path (GH-13402)Victor Stinner2019-05-182-25/+3
* bpo-36763: Use _PyCoreConfig_InitPythonConfig() (GH-13398)Victor Stinner2019-05-183-24/+78
* Fix couple of dead code paths (GH-7418)David Carlier2019-05-172-4/+0
* bpo-36763: _Py_InitializeFromArgs() argc becomes Py_ssize_t (GH-13396)Victor Stinner2019-05-173-45/+17
* bpo-27268: Fix incorrect error message on float('') (GH-2745)Pedro Lacerda2019-05-171-3/+3
* bpo-36763: Add _PyInitError functions (GH-13395)Victor Stinner2019-05-173-2/+31
* bpo-36763: _Py_RunMain() doesn't call Py_Exit() anymore (GH-13390)Victor Stinner2019-05-171-16/+36
* bpo-36945: Add _PyPreConfig.configure_locale (GH-13368)Victor Stinner2019-05-171-6/+19
* bpo-36763: Add _PyCoreConfig_InitPythonConfig() (GH-13388)Victor Stinner2019-05-176-40/+155
* bpo-36763: Add PyMemAllocatorName (GH-13387)Victor Stinner2019-05-174-81/+21
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Pablo Galindo2019-05-172-9/+16
* bpo-36763: Remove _PyCoreConfig.program (GH-13373)Victor Stinner2019-05-171-44/+16
* bpo-36763: Cleanup precmdline in _PyCoreConfig_Read() (GH-13371)Victor Stinner2019-05-173-46/+53
* bpo-36763: Add _PyCoreConfig.configure_c_stdio (GH-13363)Victor Stinner2019-05-161-3/+17
* bpo-36763: Add _Py_InitializeMain() (GH-13362)Victor Stinner2019-05-164-7/+33
* bpo-36763: Add _PyCoreConfig.parse_argv (GH-13361)Victor Stinner2019-05-161-13/+28
* bpo-36763: _PyInitError always use int for exitcode (GH-13360)Victor Stinner2019-05-162-14/+15
* bpo-36900: Replace global conf vars with config (GH-13299)Victor Stinner2019-05-144-24/+28
* bpo-36900: import.c uses PyInterpreterState.core_config (GH-13278)Victor Stinner2019-05-132-27/+46
* bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)Victor Stinner2019-05-131-2/+1
* bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)Jake Tesler2019-05-122-0/+43
* bpo-36817: Do not decrement reference for expr_text on fstring = parsing fail...Pablo Galindo2019-05-121-1/+0
* bpo-36817: Fix reference leak for expr_text in f-string = parsing (GH-13249)Pablo Galindo2019-05-111-2/+7
* 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