summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-28503: Use crypt_r() when available instead of crypt() (GH-11373)Gregory P. Smith2018-12-301-0/+10
* bpo-23867: Argument Clinic: inline parsing code for a single positional param...Serhiy Storchaka2018-12-251-0/+2
* bpo-30455: Generate all token related code and docs from Grammar/Tokens. (GH-...Serhiy Storchaka2018-12-221-8/+3
* bpo-35259: Limit `Py_FinalizeEx()` to `Py_LIMITED_API >= 0x03060000`. (GH-10620)Arthur Neufeld2018-12-201-0/+2
* bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...Serhiy Storchaka2018-12-112-4/+3
* bpo-35134: Create Include/cpython/tupleobject.h (GH-10764)Victor Stinner2018-11-282-33/+41
* bpo-35134: Don't define types twice in header files (GH-10754)Victor Stinner2018-11-272-29/+36
* bpo-35134: Create Include/cpython/pystate.h (GH-10733)Victor Stinner2018-11-262-281/+275
* bpo-35134: Create Include/cpython/dictobject.h (GH-10732)Victor Stinner2018-11-262-119/+124
* bpo-35134: Create Include/cpython/pylifecycle.h (GH-10731)Victor Stinner2018-11-262-97/+102
* bpo-35134: Create Include/cpython/abstract.h (GH-10728)Victor Stinner2018-11-262-281/+285
* bpo-35134: Add Include/cpython/pyerrors.h (GH-10727)Victor Stinner2018-11-262-168/+182
* bpo-35134: Create Include/cpython/unicodeobject.h (GH-10680)Victor Stinner2018-11-262-1286/+1251
* bpo-35134: Create Include/cpython/object.h (GH-10679)Victor Stinner2018-11-262-485/+460
* bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623)Victor Stinner2018-11-261-3/+3
* Add assertion to _PyTuple_CAST(op) (GH-10712)Victor Stinner2018-11-261-2/+2
* bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)Victor Stinner2018-11-252-4/+18
* bpo-35081: Add _PyTuple_CAST() (GH-10704)Victor Stinner2018-11-251-4/+7
* bpo-35134: Create Include/cpython/ subdirectory (GH-10624)Victor Stinner2018-11-232-105/+116
* bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)Victor Stinner2018-11-231-2/+8
* bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672)Victor Stinner2018-11-231-0/+8
* bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664)Victor Stinner2018-11-221-1/+1
* bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)Victor Stinner2018-11-221-1/+1
* bpo-35059: Add _PyObject_CAST() macro (GH-10645)Victor Stinner2018-11-225-23/+29
* bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643)Victor Stinner2018-11-222-36/+61
* bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642)Victor Stinner2018-11-211-3/+5
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-212-45/+56
* bpo-35081: Move _PyGC_FINALIZED() back to C API (GH-10626)Victor Stinner2018-11-201-3/+3
* bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606)Victor Stinner2018-11-202-5/+7
* bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...Steve Dower2018-11-182-9/+12
* bpo-35233: InitConfigTests tests more config vars (GH-10541)Victor Stinner2018-11-142-2/+3
* bpo-35230: dict: Remove some macros (GH-10513)INADA Naoki2018-11-141-2/+0
* bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524)Victor Stinner2018-11-131-0/+1
* bpo-35233: Fix _PyMainInterpreterConfig_Copy() (GH-10519)Victor Stinner2018-11-131-0/+2
* bpo-35081: Make some _PyGC macros internal (GH-10507)Victor Stinner2018-11-132-29/+46
* bpo-35081: Remove Py_BUILD_CORE from datetime.h (GH-10416)Paul Ganssle2018-11-131-21/+7
* bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)Gregory P. Smith2018-11-131-2/+2
* bpo-35214: Initial clang MemorySanitizer support (GH-10479)Gregory P. Smith2018-11-121-0/+9
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-125-2/+2