summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...Serhiy Storchaka2019-03-141-0/+12
* bpo-36280: Add Constant.kind field (GH-12295)Guido van Rossum2019-03-131-3/+4
* Remove d_initial from the parser as it is unused (GH-12212)tyomitch2019-03-091-1/+0
* bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)Eric Snow2019-03-091-0/+1
* bpo-33608: Minor cleanup related to pending calls. (gh-12247)Eric Snow2019-03-092-1/+4
* Fix the Py_atomic_* macros. (#12240)Eric Snow2019-03-081-24/+24
* bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum2019-03-074-4/+9
* bpo-9566: Fix compiler warnings in gcmodule.c (GH-11010)Jeremy Kloth2019-03-061-1/+1
* bpo-36142: _PyPreConfig_Read() sets LC_CTYPE (GH-12188)Victor Stinner2019-03-061-1/+0
* bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187)Victor Stinner2019-03-062-3/+1
* bpo-36142: _PyPreConfig_Write() sets the allocator (GH-12186)Victor Stinner2019-03-051-1/+1
* bpo-36142: Add _PyMem_GetDebugAllocatorsName() (GH-12185)Victor Stinner2019-03-051-0/+2
* bpo-36187: Remove NamedStore. (GH-12167)Serhiy Storchaka2019-03-051-1/+1
* bpo-36142: Add _PyPreConfig.allocator (GH-12181)Victor Stinner2019-03-051-3/+3
* bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174)Victor Stinner2019-03-052-22/+45
* bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173)Victor Stinner2019-03-052-5/+8
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-052-12/+36
* Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-03-047-147/+84
* bpo-31904: Add encoding support for VxWorks RTOS (GH-12051)pxinwr2019-03-041-2/+2
* bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...Eric Snow2019-03-014-54/+102
* bpo-35808: Retire pgen and use pgen2 to generate the parser (GH-11814)Pablo Galindo2019-03-013-39/+0
* bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. ...Eric Snow2019-03-011-24/+24
* bpo-36142: Add preconfig.c (GH-12128)Victor Stinner2019-03-013-7/+15
* bpo-36142: Move command line parsing to coreconfig.c (GH-12123)Victor Stinner2019-03-013-14/+36
* bpo-36142: Remove _PyMain structure (GH-12120)Victor Stinner2019-03-011-1/+13
* bpo-36142: Rework error reporting in pymain_main() (GH-12113)Victor Stinner2019-03-012-5/+8
* bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)Victor Stinner2019-03-015-27/+41
* bpo-31904: Add cross-build support for VxWorks RTOS (GH-11968)pxinwr2019-02-271-0/+4
* bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032)Sergey Fedoseev2019-02-251-10/+0
* Post v3.8.0a2Łukasz Langa2019-02-251-1/+1
* Merge tag 'v3.8.0a2'Łukasz Langa2019-02-251-2/+2
|\
| * v3.8.0a2v3.8.0a2Łukasz Langa2019-02-251-2/+2
* | bpo-36030: Add _PyTuple_FromArray() function (GH-11954)Sergey Fedoseev2019-02-251-0/+1
* | bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-251-0/+1
* | bpo-36048: Use __index__() instead of __int__() for implicit conversion if av...Serhiy Storchaka2019-02-251-1/+11
|/
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...Eric Snow2019-02-243-6/+21
* bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-1...Eric Snow2019-02-231-0/+1
* bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731)Eric Snow2019-02-233-98/+102
* bpo-1054041: Exit properly after an uncaught ^C. (#11862)Gregory P. Smith2019-02-161-0/+4
* Post 3.8.0a1Łukasz Langa2019-02-041-1/+1
* v3.8.0a1v3.8.0a1Łukasz Langa2019-02-031-2/+2
* bpo-35766: Merge typed_ast back into CPython (GH-11645)Guido van Rossum2019-01-315-34/+76
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-245-50/+63
* bpo-35713: Reorganize sys module initialization (GH-11658)Victor Stinner2019-01-231-3/+6
* bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)Victor Stinner2019-01-221-2/+3
* bpo-35713: Rework Python initialization (GH-11647)Victor Stinner2019-01-222-34/+32
* bpo-33416: Add end positions to Python AST (GH-11605)Ivan Levkivskyi2019-01-222-115/+165
* bpo-35758: Fix building on ARM + MSVC (gh-11531)Minmin Gong2019-01-212-2/+4
* bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972)Eric Snow2019-01-111-0/+2
* bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...Serhiy Storchaka2019-01-111-1/+6