summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin2021-10-191-0/+1
* bpo-35134: Add Include/cpython/longobject.h (GH-29044)Victor Stinner2021-10-191-0/+26
* bpo-35134: Split warnings.h and weakrefobject.h (GH-29042)Victor Stinner2021-10-181-0/+4
* 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-151-1/+18
* bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)Victor Stinner2021-10-151-0/+20
* bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969)Victor Stinner2021-10-152-1/+23
* bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner2021-10-141-0/+75
* bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)Victor Stinner2021-10-141-0/+70
* bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney2021-10-142-1/+3
* bpo-45440: Require math.h isinf() to build (GH-28894)Victor Stinner2021-10-131-0/+3
* bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner2021-10-131-0/+3
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-131-0/+36
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-132-0/+12
* bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)Victor Stinner2021-10-131-0/+19
* pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner2021-10-133-9/+8
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-121-0/+7
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-1/+1
* bpo-45412: Move copysign() define to pycore_pymath.h (GH-28889)Victor Stinner2021-10-111-0/+28
* bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)Victor Stinner2021-10-111-0/+91
* bpo-45412: Update _Py_ADJUST_ERANGE1() comment (GH-28884)Victor Stinner2021-10-111-2/+9
* bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner2021-10-111-0/+73
* Restore PEP 523 functionality. (GH-28871)Mark Shannon2021-10-111-0/+3
* bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)Pablo Galindo Salgado2021-10-092-0/+3
* Fix typos in the Include directory (GH-28745)Christian Clauss2021-10-062-2/+2
* bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon2021-10-061-0/+8
* bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow2021-10-051-0/+7
* bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow2021-09-282-0/+2
* bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow2021-09-272-0/+26
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-211-1/+1
* bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)Victor Stinner2021-09-211-0/+6
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-142-0/+4
* bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon2021-08-272-0/+3
* bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon2021-08-251-7/+37
* bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)Ken Jin2021-08-171-0/+7
* bpo-44890: Fix AMD build error (GH-27740)Irit Katriel2021-08-121-2/+7
* bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)Irit Katriel2021-08-121-5/+8
* Classify specialization failures. Provides more useful stats, with lower over...Mark Shannon2021-08-101-1/+3
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-092-2/+6
* bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)Mark Shannon2021-08-041-0/+2
* Add option to write specialization stats to files and script to summarize. (G...Mark Shannon2021-08-041-0/+1
* Minor fixes to specialization stats. (GH-27457)Mark Shannon2021-07-291-0/+2
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-291-0/+3
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-263-27/+109
* bpo-44654: Do not export the union type related symbols (GH-27223)Serhiy Storchaka2021-07-181-4/+4
* bpo-44654: Refactor and clean up the union type implementation (GH-27196)Serhiy Storchaka2021-07-171-3/+7
* Remove legacy opcache structs (GH-27164)Ken Jin2021-07-161-23/+0