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
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-91276: Make JUMP_IF_TRUE_OR_POP/JUMP_IF_FALSE_OR_POP relative (GH-32215)
Irit Katriel
2022-04-15
1
-1/+1
*
gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)
Irit Katriel
2022-04-15
2
-0/+6
*
gh-91428: include specialized opcodes in _PyOpcode_OpName (GH-91467)
Dennis Sweeney
2022-04-14
1
-0/+146
*
gh-91502: Add a new API to check if a frame is an entry frame (GH-91503)
Pablo Galindo Salgado
2022-04-13
1
-0/+10
*
gh-91428: Add _PyOpcode_OpName to opcode.h of debug builds (GH-91430)
Dennis Sweeney
2022-04-11
1
-0/+115
*
GH-89480: Document motivation, design and implementation of 3.11 frame stack....
Mark Shannon
2022-04-11
1
-0/+8
*
bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)
John Belmonte
2022-04-11
2
-0/+3
*
bpo-47120: make POP_JUMP_IF_TRUE/FALSE/NONE/NOT_NONE relative (GH-32400)
Irit Katriel
2022-04-11
1
-15/+23
*
Add new PyFrame_GetLasti C-API function (GH-32413)
Mark Shannon
2022-04-08
1
-0/+1
*
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher
2022-04-07
1
-7/+10
*
bpo-35134: Remove the Include/code.h header file (GH-32385)
Victor Stinner
2022-04-07
3
-21/+14
*
bpo-35134: Add Include/cpython/setobject.h header (GH-32384)
Victor Stinner
2022-04-06
2
-67/+73
*
bpo-35134: Add Include/cpython/complexobject.h header (GH-32383)
Victor Stinner
2022-04-06
2
-42/+47
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
1
-0/+5
*
Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-3205...
Victor Stinner
2022-04-06
5
-21/+14
*
Post 3.11.0a7
Pablo Galindo
2022-04-05
1
-1/+1
*
Python 3.11.0a7
v3.11.0a7
Pablo Galindo
2022-04-05
1
-2/+2
*
bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)
Irit Katriel
2022-04-05
1
-3/+3
*
bpo-47186: Replace JUMP_IF_NOT_EG_MATCH by CHECK_EG_MATCH + jump (GH-32309)
Irit Katriel
2022-04-05
1
-36/+36
*
Revert "bpo-44800: Document internal frame naming conventions (GH-32281)" (#3...
Mark Shannon
2022-04-04
1
-69/+0
*
bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)
Inada Naoki
2022-04-04
2
-0/+2
*
bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads (...
Hood Chatham
2022-04-03
1
-0/+25
*
bpo-44800: Document internal frame naming conventions (GH-32281)
Nick Coghlan
2022-04-03
1
-0/+69
*
bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)
Irit Katriel
2022-04-01
1
-36/+36
*
bpo-47009: Streamline list.append for the common case (GH-31864)
Dennis Sweeney
2022-04-01
1
-0/+18
*
bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API (GH-...
Victor Stinner
2022-04-01
3
-12/+16
*
bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)
Victor Stinner
2022-04-01
2
-2/+5
*
bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)
Mark Shannon
2022-03-31
1
-0/+5
*
bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...
Irit Katriel
2022-03-31
1
-8/+8
*
bpo-47164: Add _PyCFunctionObject_CAST() macr (GH-32190)
Victor Stinner
2022-03-31
1
-6/+11
*
bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)
Victor Stinner
2022-03-31
1
-0/+18
*
bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)
Victor Stinner
2022-03-31
2
-34/+35
*
bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)
Christian Heimes
2022-03-30
1
-0/+27
*
Merge deoptimization blocks in interpreter (GH-32155)
Mark Shannon
2022-03-30
1
-0/+2
*
bpo-47070: Add _PyBytes_Repeat() (GH-31999)
Pieter Eendebak
2022-03-28
1
-0/+13
*
bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)
Kumar Aditya
2022-03-27
1
-26/+28
*
bpo-47053: Reduce deoptimization in BINARY_OP_INPLACE_ADD_UNICODE (GH-31318)
Dennis Sweeney
2022-03-25
1
-1/+1
*
bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...
Mark Shannon
2022-03-25
2
-0/+2
*
bpo-46541: Add a Comment About When to Use _Py_DECLARE_STR(). (gh-32063)
Eric Snow
2022-03-23
1
-0/+10
*
bpo-47012: speed up iteration of bytes and bytearray (GH-31867)
Kumar Aditya
2022-03-23
1
-2/+8
*
bpo-43166: Disable ceval.c optimizations for Windows debug builds (GH-32023)
neonene
2022-03-23
1
-11/+0
*
bpo-47045: Remove `f_state` field (GH-31963)
Mark Shannon
2022-03-22
3
-27/+22
*
bpo-47084: Clear Unicode cached representations on finalization (GH-32032)
Jeremy Kloth
2022-03-22
1
-0/+1
*
Fix typo in pycore_bytesobject.h (GH-31914)
jonasdlindner
2022-03-21
1
-1/+1
*
bpo-47067: Optimize calling GenericAlias objects (GH-31996)
penguin_wwy
2022-03-21
2
-0/+2
*
bpo-46841: Quicken code in-place (GH-31888)
Brandt Bucher
2022-03-21
3
-300/+464
*
bpo-46850: Remove _PyEval_CallTracing() function (GH-32019)
Victor Stinner
2022-03-21
2
-2/+3
*
bpo-46850: Remove _PyEval_GetCoroutineOriginTrackingDepth() (GH-32018)
Victor Stinner
2022-03-21
2
-9/+10
*
bpo-46850: Remove _PyEval_SetAsyncGenFinalizer() (GH-32017)
Victor Stinner
2022-03-21
2
-4/+8
*
bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)
Victor Stinner
2022-03-18
2
-6/+0
[next]