summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* bpo-45723: Prepare support for autoconf 2.71 (GH-29441)Christian Heimes2021-11-081-8/+1
* Post 3.11.0a2Pablo Galindo2021-11-051-1/+1
* Python 3.11.0a2v3.11.0a2Pablo Galindo2021-11-051-2/+2
* bpo-45292: [PEP 654] Update traceback display code to work with exception gro...Irit Katriel2021-11-051-0/+11
* bpo-45691: Make array of small ints static to fix use-after-free error. (GH-2...Mark Shannon2021-11-033-29/+17
* bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...Eric Snow2021-10-281-0/+3
* Store actual ints, not pointers to them in the interpreter state. (GH-29274)Mark Shannon2021-10-283-3/+3
* bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon2021-10-281-0/+15
* bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon2021-10-281-2/+2
* bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)Brandt Bucher2021-10-271-19/+19
* bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)Eric Snow2021-10-221-0/+3
* bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel2021-10-224-0/+12
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-0/+37
* bpo-45315: PyType_FromSpec: Copy spec->name and have the type own the memory ...Petr Viktorin2021-10-211-0/+1
* bpo-44220: Export PyStructSequence_UnnamedField in the limited API (GH-26331)Ken Jin2021-10-211-1/+1
* bpo-45527: Don't count cache hits, just misses. (GH-29092)Mark Shannon2021-10-201-47/+0
* bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon2021-10-202-23/+31
* bpo-45474: Exclude all of marshal.h if Py_LIMITED_API is defined (GH-29061)Petr Viktorin2021-10-201-2/+4
* bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin2021-10-192-23/+29
* bpo-45434: Only exclude <stdlib.h> in Python 3.11 limited C API (GH-29027)Victor Stinner2021-10-192-7/+10
* bpo-35134: Add Include/cpython/longobject.h (GH-29044)Victor Stinner2021-10-193-130/+124
* bpo-35134: Split warnings.h and weakrefobject.h (GH-29042)Victor Stinner2021-10-185-77/+82
* bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)Victor Stinner2021-10-181-2/+2
* bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow2021-10-161-0/+1
* bpo-45440: Remove pymath.c fallbacks (GH-28977)Victor Stinner2021-10-151-18/+0
* bpo-30459: Use (void) in macros setting variables (GH-28982)Victor Stinner2021-10-152-4/+4
* bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner2021-10-152-1/+25
* bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)Victor Stinner2021-10-153-20/+20
* bpo-45434: Remove Include/eval.h header file (GH-28973)Victor Stinner2021-10-154-29/+13
* bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969)Victor Stinner2021-10-153-21/+15
* bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)Victor Stinner2021-10-155-18/+15
* bpo-35134: Move Include/cellobject.h to Include/cpython/ (GH-28964)Victor Stinner2021-10-152-2/+4
* po-35134: Move Include/funcobject.h to Include/cpython/ (GH-28958)Victor Stinner2021-10-142-4/+2
* bpo-45434: Remove useless space in includes (GH-28963)Victor Stinner2021-10-1424-28/+26
* bpo-45434: Limited Python.h no longer includes stdio.h (GH-28960)Victor Stinner2021-10-141-7/+4
* bpo-45474: Fix the limited C API of marshal.h (GH-28956)Victor Stinner2021-10-141-6/+7
* bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner2021-10-143-79/+104
* bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)Victor Stinner2021-10-142-93/+82
* bpo-45467: Fix IncrementalDecoder and StreamReader in the "raw-unicode-escape...Serhiy Storchaka2021-10-141-0/+10
* bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney2021-10-143-28/+33
* bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-escape" co...Serhiy Storchaka2021-10-141-1/+9
* bpo-45440: Require math.h isinf() to build (GH-28894)Victor Stinner2021-10-132-71/+12
* bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner2021-10-133-3/+5
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-132-22/+36
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-135-10/+25
* bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)Victor Stinner2021-10-132-20/+19
* pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner2021-10-134-19/+10
* bpo-45434: bytearrayobject.h no longer includes <stdarg.h> (GH-28913)Victor Stinner2021-10-134-5/+3
* bpo-45434: Convert Py_GETENV() macro to a function (GH-28912)Victor Stinner2021-10-131-1/+1
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-122-9/+7