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-93841: Allow stats to be turned on and off, cleared and dumped at runtime....
Mark Shannon
2022-06-21
1
-8/+8
*
GH-91432: Specialize FOR_ITER (GH-91713)
Dennis Sweeney
2022-06-21
5
-28/+69
*
gh-87347: Add parenthesis around macro arguments (#93915)
Victor Stinner
2022-06-20
8
-28/+31
*
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon
2022-06-20
1
-0/+29
*
GH-93897: Store frame size in code object and de-opt if insufficient space on...
Mark Shannon
2022-06-20
1
-23/+27
*
gh-93911: Specialize `LOAD_ATTR_PROPERTY` (GH-93912)
Ken Jin
2022-06-17
2
-13/+40
*
gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)
Victor Stinner
2022-06-16
3
-4/+4
*
GH-93429: Merge `LOAD_METHOD` back into `LOAD_ATTR` (GH-93430)
Ken Jin
2022-06-14
2
-49/+43
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
2
-8/+0
*
GH-90699: use statically allocated strings in typeobject.c (gh-93751)
Kumar Aditya
2022-06-12
2
-0/+4
*
gh-91162: Support splitting of unpacked arbitrary-length tuple over TypeVar a...
Serhiy Storchaka
2022-06-12
2
-0/+2
*
Shrink the LOAD_METHOD cache by one codeunit. (#93537)
Mark Shannon
2022-06-07
2
-2/+1
*
gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH...
Dennis Sweeney
2022-05-31
1
-9/+10
*
GH-93354: Use exponential backoff to avoid excessive specialization attempts....
Mark Shannon
2022-05-31
1
-3/+44
*
bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)
Eric Snow
2022-05-27
4
-21/+0
*
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...
Mark Shannon
2022-05-27
3
-0/+8
*
gh-82616: Add Py_IS_TYPE_SIGNED() macro (#93178)
Victor Stinner
2022-05-27
1
-6/+2
*
gh-92777: Add LOAD_METHOD_LAZY_DICT (GH-92778)
Ken Jin
2022-05-25
1
-13/+14
*
gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066)
Yury Selivanov
2022-05-23
1
-1/+13
*
GH-89914: Make the oparg of the YIELD_VALUE instruction equal the stack depth...
Mark Shannon
2022-05-19
1
-7/+7
*
gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)
Christian Heimes
2022-05-19
1
-1/+7
*
GH-90690: Remove `PRECALL` instruction (GH-92925)
Mark Shannon
2022-05-19
2
-96/+84
*
Improve object stats (#92845)
Mark Shannon
2022-05-16
2
-49/+2
*
gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)
Inada Naoki
2022-05-12
1
-1/+0
*
gh-92651: Remove the Include/token.h header file (#92652)
Victor Stinner
2022-05-11
1
-0/+100
*
gh-89653: PEP 670: Convert pycore_gc.h macros to functions (#92649)
Victor Stinner
2022-05-11
1
-23/+49
*
gh-91162: Fix substitution of unpacked tuples in generic aliases (GH-92335)
Serhiy Storchaka
2022-05-08
2
-2/+4
*
gh-87390: Fix starred tuple equality and pickling (GH-92337)
Serhiy Storchaka
2022-05-05
2
-0/+2
*
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner
2022-05-04
1
-12/+8
*
Add more stats for freelist use and allocations. (GH-92211)
Mark Shannon
2022-05-03
1
-0/+8
*
gh-92031: Deoptimize Static Code at Finalization (GH-92039)
Dennis Sweeney
2022-05-03
1
-0/+186
*
bpo-43224: Implement substitution of unpacked TypeVarTuple in C (GH-31828)
Serhiy Storchaka
2022-04-30
2
-0/+2
*
gh-91603: Speed up isinstance/issubclass on union types (GH-91631)
Yurii Karabas
2022-04-28
1
-0/+1
*
gh-89479: Export _Py_GetSpecializationStats() internal function (#92011)
Victor Stinner
2022-04-28
1
-2/+3
*
gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)
Dennis Sweeney
2022-04-28
1
-18/+18
*
gh-91719: Add pycore_opcode.h internal header file (#91906)
Victor Stinner
2022-04-25
1
-0/+581
*
gh-64783: Fix signal.NSIG value on FreeBSD (#91929)
Victor Stinner
2022-04-25
2
-16/+35
*
gh-91768: C API no longer use "const PyObject*" type (#91769)
Victor Stinner
2022-04-21
1
-2/+2
*
GH-88116: Use a compact format to represent end line and column offsets. (GH-...
Mark Shannon
2022-04-21
1
-14/+35
*
gh-90667: Add specializations of Py_DECREF when types are known (GH-30872)
Dennis Sweeney
2022-04-19
4
-8/+39
*
gh-91576: Speed up iteration of strings (#91574)
Kumar Aditya
2022-04-18
1
-0/+1
*
gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)
Dennis Sweeney
2022-04-16
2
-2/+2
*
gh-89770: Implement PEP-678 - Exception notes (GH-31317)
Irit Katriel
2022-04-16
2
-2/+2
*
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
1
-0/+2
*
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher
2022-04-07
1
-7/+10
*
Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-3205...
Victor Stinner
2022-04-06
3
-21/+2
*
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
[next]