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
/
internal
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-104580: Put `eval_breaker` back at the start of the interpreter state. (GH...
Mark Shannon
2023-07-28
2
-3/+8
*
gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-107359)
Eric Snow
2023-07-27
2
-31/+0
*
gh-106931: Intern Statically Allocated Strings Globally (gh-107272)
Eric Snow
2023-07-27
4
-0/+9
*
GH-106895: Raise a `ValueError` when attempting to disable events that cannot...
Mark Shannon
2023-07-27
1
-1/+2
*
gh-105481: remove dependency of _inline_cache_entries on opname (#107339)
Irit Katriel
2023-07-27
1
-9/+9
*
GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291)
Mark Shannon
2023-07-27
1
-2/+3
*
gh-107015: Remove async_hacks from the tokenizer (#107018)
Pablo Galindo Salgado
2023-07-26
1
-12/+10
*
gh-106149: Simplify stack depth calculation. Replace asserts by exceptions. (...
Irit Katriel
2023-07-26
1
-2/+2
*
Remove unused internal _PyImport_GetModuleId() function (#107235)
Victor Stinner
2023-07-25
1
-1/+0
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-2/+2
*
gh-107211: No longer export internal variables (#107218)
Victor Stinner
2023-07-25
6
-20/+26
*
gh-107211: No longer export internal functions (4) (#107217)
Victor Stinner
2023-07-25
13
-15/+29
*
gh-107211: No longer export internal functions (3) (#107215)
Victor Stinner
2023-07-25
7
-23/+30
*
gh-107211: No longer export internal functions (2) (#107214)
Victor Stinner
2023-07-25
10
-62/+69
*
gh-107211: No longer export internal functions (1) (#107213)
Victor Stinner
2023-07-25
10
-66/+67
*
gh-107211: Rename PySymtable_Lookup() to _PySymtable_Lookup() (#107212)
Victor Stinner
2023-07-25
1
-1/+1
*
gh-106149: move _PyCfg_BasicblockLastInstr and make it local to flowgraph.c (...
Irit Katriel
2023-07-24
1
-13/+0
*
gh-106320: Remove private _PyMem API (#107187)
Victor Stinner
2023-07-24
1
-1/+13
*
gh-106320: Remove private _PyUnicode C API (#107185)
Victor Stinner
2023-07-24
1
-0/+13
*
gh-106320: Remove private _PyDict C API (#107145)
Victor Stinner
2023-07-24
1
-0/+20
*
gh-106320: Remove private _PyObject C API (#107159)
Victor Stinner
2023-07-23
1
-1/+10
*
gh-106320: Remove _PyBytes_Join() C API (#107144)
Victor Stinner
2023-07-23
1
-0/+19
*
gh-106320: Remove private _PyObject C API (#107147)
Victor Stinner
2023-07-23
1
-0/+21
*
gh-106320: Remove _PyTuple_MaybeUntrack() C API (#107143)
Victor Stinner
2023-07-23
1
-2/+2
*
gh-106320: Remove _PyIsSelectable_fd() C API (#107142)
Victor Stinner
2023-07-23
1
-0/+7
*
gh-106320: Remove _PyFunction_Vectorcall() API (#107071)
Victor Stinner
2023-07-22
1
-0/+6
*
gh-106320: Remove private _PyModule API (#107070)
Victor Stinner
2023-07-22
1
-0/+6
*
GH-103082: Rename PY_MONITORING_EVENTS to _PY_MONITORING_EVENTS (#107069)
Victor Stinner
2023-07-22
1
-2/+2
*
gh-106320: Move _PyMethodWrapper_Type to internal C API (#107064)
Victor Stinner
2023-07-22
1
-0/+2
*
gh-106320: Remove private _PyInterpreterID C API (#107053)
Victor Stinner
2023-07-22
1
-0/+28
*
gh-106320: Remove _Py_SwappedOp from the C API (#107036)
Victor Stinner
2023-07-22
1
-0/+3
*
gh-106320: Move private _PySet API to the internal API (#107041)
Victor Stinner
2023-07-22
2
-1/+26
*
gh-106320: Move private _PyGen API to the internal C API (#107032)
Victor Stinner
2023-07-22
1
-0/+11
*
gh-106320: Move _PyNone_Type to the internal C API (#107030)
Victor Stinner
2023-07-22
1
-0/+4
*
gh-106320: Move private _PyHash API to the internal C API (#107026)
Victor Stinner
2023-07-22
1
-5/+80
*
GH-106701: Move _PyUopExecute to Python/executor.c (GH-106924)
Brandt Bucher
2023-07-20
1
-0/+12
*
gh-105481: do not auto-generate pycore_intrinsics.h (#106913)
Irit Katriel
2023-07-20
1
-5/+15
*
gh-105481: Generate the opcode lists in dis from data extracted from bytecode...
Irit Katriel
2023-07-18
1
-16/+20
*
Small fixes to code generator (#106845)
Guido van Rossum
2023-07-18
1
-5/+5
*
gh-106603: Make uop struct a triple (opcode, oparg, operand) (#106794)
Guido van Rossum
2023-07-17
2
-18/+29
*
gh-106581: Add 10 new opcodes by allowing `assert(kwnames == NULL)` (#106707)
Guido van Rossum
2023-07-17
1
-0/+10
*
gh-106797: Remove warning logs from Python/generated_cases.c.h (gh-106798)
Dong-hee Na
2023-07-17
1
-5/+5
*
gh-81283: compiler: remove indent from docstring (#106411)
Inada Naoki
2023-07-15
1
-0/+2
*
gh-105481: expose opcode metadata via the _opcode module (#106688)
Irit Katriel
2023-07-14
1
-10/+22
*
gh-106529: Split FOR_ITER_{LIST,TUPLE} into uops (#106696)
Guido van Rossum
2023-07-14
1
-7/+19
*
gh-106701: Move the hand-written Tier 2 uops to bytecodes.c (#106702)
Guido van Rossum
2023-07-13
1
-50/+50
*
GH-104909: Split `LOAD_ATTR_INSTANCE_VALUE` into micro-ops (GH-106678)
Mark Shannon
2023-07-13
1
-9/+13
*
gh-106529: Split FOR_ITER_RANGE into uops (#106638)
Guido van Rossum
2023-07-12
1
-0/+6
*
GH-104909: Break LOAD_GLOBAL specializations in micro-ops. (GH-106677)
Mark Shannon
2023-07-12
2
-3/+9
*
gh-105481: move Python/opcode_metadata.h to Include/internal/pycore_opcode_me...
Irit Katriel
2023-07-12
1
-0/+1317
[next]