index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-45753: Make recursion checks more efficient. (GH-29524)
Mark Shannon
2021-11-16
6
-36/+40
*
bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)
Victor Stinner
2021-11-15
1
-3/+0
*
bpo-45636: Remove the old %-formatting fast-path (GH-29532)
Brandt Bucher
2021-11-15
2
-12/+8
*
bpo-45711: assert that the type of exc_info is redundant (GH-29518)
Irit Katriel
2021-11-12
1
-0/+25
*
bpo-45773: Stop "optimizing" certain jump patterns (GH-29505)
Brandt Bucher
2021-11-11
1
-76/+41
*
bpo-45636: Merge all numeric operators (GH-29482)
Brandt Bucher
2021-11-11
4
-700/+338
*
bpo-45696: Deep-freeze selected modules (GH-29118)
Guido van Rossum
2021-11-11
4
-32/+120
*
bpo-45711: remove unnecessary DUP_TOP and POP in exception handling (GH-29495)
Irit Katriel
2021-11-10
2
-10/+5
*
bpo-45292: [PEP 654] Update traceback display code to work with exception gro...
Irit Katriel
2021-11-05
2
-72/+363
*
bpo-45688: Add _scproxy to sys.stdlib_module_names (GH-29358)
Christian Heimes
2021-11-02
1
-0/+1
*
bpo-45379: clarify FROZEN_EXCLUDED and FROZEN_INVALID documentation (GH-29189)
Filipe Laíns
2021-10-29
1
-2/+7
*
bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...
Eric Snow
2021-10-28
2
-53/+125
*
bpo-45379: add custom error string for FROZEN_DISABLED (GH-29190)
Filipe Laíns
2021-10-28
1
-1/+3
*
Store actual ints, not pointers to them in the interpreter state. (GH-29274)
Mark Shannon
2021-10-28
1
-3/+1
*
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon
2021-10-28
2
-63/+100
*
bpo-44525: Add recursive checks for `CALL_FUNCTION_BUILTIN_O` (GH-29271)
Ken Jin
2021-10-28
1
-0/+6
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
5
-31/+32
*
Don't make a call at the C level when calling bound-methods from Python code....
Mark Shannon
2021-10-27
1
-1/+14
*
bpo-44511: Improve the bytecode for class and mapping patterns (GH-26922)
Brandt Bucher
2021-10-27
3
-80/+75
*
bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)
Eric Snow
2021-10-22
1
-0/+95
*
bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...
Irit Katriel
2021-10-22
1
-0/+2
*
bpo-45522: Allow to disable freelists on build time (GH-29056)
Christian Heimes
2021-10-21
1
-8/+15
*
bpo-45527: Don't count cache hits, just misses. (GH-29092)
Mark Shannon
2021-10-20
2
-60/+33
*
bpo-44525: Specialize simple Python calls. (GH-29033)
Mark Shannon
2021-10-20
3
-37/+143
*
bpo-44525: Specialize ``CALL_FUNCTION`` for C function calls (GH-26934)
Ken Jin
2021-10-19
3
-27/+321
*
Record cache hits for BINARY_SUBSCR specializations (GH-29060)
Ken Jin
2021-10-19
1
-0/+3
*
bpo-35134: Add Include/cpython/longobject.h (GH-29044)
Victor Stinner
2021-10-19
2
-2/+3
*
bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)
Victor Stinner
2021-10-18
2
-9/+9
*
bpo-45256: Avoid C calls for most Python to Python calls. (GH-28937)
Mark Shannon
2021-10-18
1
-153/+97
*
bpo-45434: Include stdlib.h for specialize stat (GH-29015)
Dong-hee Na
2021-10-18
1
-1/+2
*
bpo-45020: Default to using frozen modules unless running from source tree. (...
Eric Snow
2021-10-16
2
-19/+73
*
bpo-45440: Remove pymath.c fallbacks (GH-28977)
Victor Stinner
2021-10-15
1
-48/+0
*
bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)
Victor Stinner
2021-10-15
3
-18/+27
*
bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)
Victor Stinner
2021-10-15
2
-10/+11
*
bpo-35134: Move classobject.h to Include/cpython/ (GH-28968)
Victor Stinner
2021-10-15
1
-1/+0
*
bpo-35134: Add Include/cpython/floatobject.h (GH-28957)
Victor Stinner
2021-10-14
1
-0/+1
*
bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)
Eric Snow
2021-10-14
2
-25/+59
*
bpo-45471: Do not set PyConfig.stdlib_dir in Py_SetPythonHome(). (gh-28954)
Eric Snow
2021-10-14
1
-4/+1
*
bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)
Victor Stinner
2021-10-14
1
-1/+1
*
bpo-45367: Specialize BINARY_MULTIPLY (GH-28727)
Dennis Sweeney
2021-10-14
3
-23/+116
*
Ensure that instruction cases are self-contained (GH-28938)
Brandt Bucher
2021-10-13
1
-6/+6
*
bpo-45440: Require math.h isinf() to build (GH-28894)
Victor Stinner
2021-10-13
1
-13/+0
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
7
-5/+13
*
bpo-45445: Fail if an invalid X-option is provided in the command line (GH-28...
Pablo Galindo Salgado
2021-10-13
1
-0/+48
*
bpo-45434: Mark the PyTokenizer C API as private (GH-28924)
Victor Stinner
2021-10-13
3
-6/+5
*
bpo-45256: Fix cleanup of stolen locals for Python-to-Python calls (GH-28905)
Pablo Galindo Salgado
2021-10-13
1
-10/+24
*
bpo-45434: Remove pystrhex.h header file (GH-28923)
Victor Stinner
2021-10-13
1
-2/+2
*
bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)
Mark Shannon
2021-10-13
3
-119/+112
*
bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)
Victor Stinner
2021-10-13
1
-2/+3
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
6
-11/+17
[next]