summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum2019-03-077-133/+215
* bpo-36142: PYTHONMALLOC overrides PYTHONDEV (GH-12191)Victor Stinner2019-03-061-7/+11
* bpo-36142: _PyPreConfig_Read() sets LC_CTYPE (GH-12188)Victor Stinner2019-03-063-46/+78
* bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187)Victor Stinner2019-03-062-45/+45
* bpo-36142: _PyPreConfig_Write() sets the allocator (GH-12186)Victor Stinner2019-03-052-40/+93
* bpo-36142: Add _PyMem_GetDebugAllocatorsName() (GH-12185)Victor Stinner2019-03-051-1/+2
* bpo-36187: Remove NamedStore. (GH-12167)Serhiy Storchaka2019-03-054-141/+97
* bpo-36142: Add _PyPreConfig.allocator (GH-12181)Victor Stinner2019-03-054-23/+72
* bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174)Victor Stinner2019-03-054-341/+417
* bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173)Victor Stinner2019-03-055-40/+168
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-054-34/+151
* Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-03-044-231/+151
* bpo-31904: Add encoding support for VxWorks RTOS (GH-12051)pxinwr2019-03-042-4/+4
* bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...Eric Snow2019-03-011-2/+24
* bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814)Pablo Galindo2019-03-011-846/+832
* bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. ...Eric Snow2019-03-011-2/+3
* bpo-33608: Use _Py_AddPendingCall() in _PyCrossInterpreterData_Release(). (gh...Eric Snow2019-03-011-39/+42
* bpo-36142: Add preconfig.c (GH-12128)Victor Stinner2019-03-012-80/+95
* bpo-36142: Move command line parsing to coreconfig.c (GH-12123)Victor Stinner2019-03-011-20/+955
* bpo-36142: Remove _PyMain structure (GH-12120)Victor Stinner2019-03-011-0/+8
* bpo-36142: Rework error reporting in pymain_main() (GH-12113)Victor Stinner2019-03-013-9/+14
* bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)Victor Stinner2019-03-014-0/+4
* bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032)Sergey Fedoseev2019-02-251-1/+2
* bpo-36030: Add _PyTuple_FromArray() function (GH-11954)Sergey Fedoseev2019-02-251-6/+1
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-258-66/+174
* bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...Serhiy Storchaka2019-02-251-1/+3
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...Eric Snow2019-02-244-111/+165
* bpo-36101: remove non-ascii characters in docstring (GH-12018)animalize2019-02-242-4/+4
* bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-1...Eric Snow2019-02-231-1/+8
* bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731)Eric Snow2019-02-231-0/+11
* bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (G...Stéphane Wirtel2019-02-211-1/+1
* Re-init _Py_UnhandledKeyboardInterrupt before run. (GH-11963)Gregory P. Smith2019-02-211-0/+11
* bpo-35993: Fix _PyInterpreterState_DeleteExceptMain() (GH-11852)Stéphane Wirtel2019-02-201-2/+5
* bpo-12822: use monotonic clock for condvar if possible (GH-11723)Inada Naoki2019-02-203-47/+75
* bpo-36049: Fix compiler warning in Python/ast.c (GH-11949)Pablo Galindo2019-02-191-1/+1
* bpo-1054041: Exit properly after an uncaught ^C. (#11862)Gregory P. Smith2019-02-162-2/+15
* bpo-35798: Fix duplicate SyntaxWarning: "is" with a literal. (GH-11639)Serhiy Storchaka2019-02-161-3/+3
* bpo-15248: Emit a compiler warning when missed a comma before tuple or list. ...Serhiy Storchaka2019-02-161-6/+140
* bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in ...Alexey Izbyshev2019-02-121-2/+6
* Complete switch cases in symtable.c; fixes bpo-35963 (GH-11821)Guido van Rossum2019-02-111-0/+4
* bpo-35766 follow-up: Add an error check to new_type_comment() (#11766)Guido van Rossum2019-02-111-0/+2
* Fix compiler warning about non initialised variable (GH-11806)Pablo Galindo2019-02-101-2/+2
* Fix compiler warnings about end_col_offset and end_lineno (GH-11735)Ivan Levkivskyi2019-02-101-5/+2
* bpo-35321: Set the spec origin to frozen in frozen modules (#11732)Nina Zakharenko2019-02-051-656/+657
* bpo-35890 : Fix some API calling consistency (GH-11742)Minmin Gong2019-02-032-6/+12
* bpo-33895: Relase GIL while calling functions that acquire Windows loader loc...Tony Roberts2019-02-022-0/+8
* bpo-33316: PyThread_release_lock always fails (GH-6541)native-api2019-02-021-2/+3
* bpo-35879: Fix type comment leaks (GH-11728)Guido van Rossum2019-02-011-3/+8
* bpo-35877: Make parenthesis optional for named expression in while statement ...Xtreak2019-02-011-1/+1
* bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11...Guido van Rossum2019-02-011-3/+2