summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon2021-11-166-36/+40
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-151-3/+0
* bpo-45636: Remove the old %-formatting fast-path (GH-29532)Brandt Bucher2021-11-152-12/+8
* bpo-45711: assert that the type of exc_info is redundant (GH-29518)Irit Katriel2021-11-121-0/+25
* bpo-45773: Stop "optimizing" certain jump patterns (GH-29505)Brandt Bucher2021-11-111-76/+41
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-114-700/+338
* bpo-45696: Deep-freeze selected modules (GH-29118)Guido van Rossum2021-11-114-32/+120
* bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)Irit Katriel2021-11-102-10/+5
* bpo-45292: [PEP 654] Update traceback display code to work with exception gro...Irit Katriel2021-11-052-72/+363
* bpo-45688: Add _scproxy to sys.stdlib_module_names (GH-29358)Christian Heimes2021-11-021-0/+1
* bpo-45379: clarify FROZEN_EXCLUDED and FROZEN_INVALID documentation (GH-29189)Filipe Laíns2021-10-291-2/+7
* bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...Eric Snow2021-10-282-53/+125
* bpo-45379: add custom error string for FROZEN_DISABLED (GH-29190)Filipe Laíns2021-10-281-1/+3
* Store actual ints, not pointers to them in the interpreter state. (GH-29274)Mark Shannon2021-10-281-3/+1
* bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon2021-10-282-63/+100
* bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)Ken Jin2021-10-281-0/+6
* bpo-45637: Store the frame pointer in the cframe (GH-29267)Mark Shannon2021-10-285-31/+32
* Don't make a call at the C level when calling bound-methods from Python code....Mark Shannon2021-10-271-1/+14
* bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)Brandt Bucher2021-10-273-80/+75
* bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)Eric Snow2021-10-221-0/+95
* bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel2021-10-221-0/+2
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-8/+15
* bpo-45527: Don't count cache hits, just misses. (GH-29092)Mark Shannon2021-10-202-60/+33
* bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon2021-10-203-37/+143
* bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)Ken Jin2021-10-193-27/+321
* Record cache hits for BINARY_SUBSCR specializations (GH-29060)Ken Jin2021-10-191-0/+3
* bpo-35134: Add Include/cpython/longobject.h (GH-29044)Victor Stinner2021-10-192-2/+3
* bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)Victor Stinner2021-10-182-9/+9
* bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)Mark Shannon2021-10-181-153/+97
* bpo-45434: Include stdlib.h for specialize stat (GH-29015)Dong-hee Na2021-10-181-1/+2
* bpo-45020: Default to using frozen modules unless running from source tree. (...Eric Snow2021-10-162-19/+73
* bpo-45440: Remove pymath.c fallbacks (GH-28977)Victor Stinner2021-10-151-48/+0
* bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)Victor Stinner2021-10-153-18/+27
* bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)Victor Stinner2021-10-152-10/+11
* bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)Victor Stinner2021-10-151-1/+0
* bpo-35134: Add Include/cpython/floatobject.h (GH-28957)Victor Stinner2021-10-141-0/+1
* bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)Eric Snow2021-10-142-25/+59
* bpo-45471: Do not set PyConfig.stdlib_dir in Py_SetPythonHome(). (gh-28954)Eric Snow2021-10-141-4/+1
* bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)Victor Stinner2021-10-141-1/+1
* bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)Dennis Sweeney2021-10-143-23/+116
* Ensure that instruction cases are self-contained (GH-28938)Brandt Bucher2021-10-131-6/+6
* bpo-45440: Require math.h isinf() to build (GH-28894)Victor Stinner2021-10-131-13/+0
* bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)Victor Stinner2021-10-137-5/+13
* bpo-45445: Fail if an invalid X-option is provided in the command line (GH-28...Pablo Galindo Salgado2021-10-131-0/+48
* bpo-45434: Mark the PyTokenizer C API as private (GH-28924)Victor Stinner2021-10-133-6/+5
* bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)Pablo Galindo Salgado2021-10-131-10/+24
* bpo-45434: Remove pystrhex.h header file (GH-28923)Victor Stinner2021-10-131-2/+2
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-133-119/+112
* bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)Victor Stinner2021-10-131-2/+3
* pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)Victor Stinner2021-10-136-11/+17