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
*
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
*
bpo-44800: Document internal frame naming conventions (GH-32281)
Nick Coghlan
2022-04-03
1
-0/+69
*
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
2
-2/+16
*
bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)
Victor Stinner
2022-04-01
1
-0/+5
*
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-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
1
-0/+1
*
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-47045: Remove `f_state` field (GH-31963)
Mark Shannon
2022-03-22
1
-26/+20
*
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
1
-12/+5
*
bpo-46850: Remove _PyEval_CallTracing() function (GH-32019)
Victor Stinner
2022-03-21
1
-0/+3
*
bpo-46850: Remove _PyEval_GetCoroutineOriginTrackingDepth() (GH-32018)
Victor Stinner
2022-03-21
1
-8/+10
*
bpo-46850: Remove _PyEval_SetAsyncGenFinalizer() (GH-32017)
Victor Stinner
2022-03-21
1
-0/+8
*
bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)
Victor Stinner
2022-03-18
1
-4/+0
*
bpo-45923: Decouple suspension of tracing from tracing flag. (GH-31908)
Mark Shannon
2022-03-15
1
-6/+1
*
bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)
Victor Stinner
2022-03-11
1
-48/+0
*
bpo-44796: Unify TypeVar and ParamSpec substitution (GH-31143)
Serhiy Storchaka
2022-03-11
2
-0/+2
*
bpo-46881: Statically allocate and initialize the latin1 characters. (GH-31616)
Kumar Aditya
2022-03-09
3
-16/+289
*
bpo-46841: Don't use an oparg counter for `STORE_SUBSCR` (GH-31742)
Brandt Bucher
2022-03-08
1
-0/+6
*
bpo-46841: Use inline caching for calls (GH-31709)
Brandt Bucher
2022-03-07
4
-115/+32
*
bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)
Mark Shannon
2022-03-04
1
-0/+1
*
bpo-46841: Use inline caching for attribute accesses (GH-31640)
Brandt Bucher
2022-03-03
1
-25/+112
*
bpo-45459: Use type names in the internal C API (GH-31669)
Victor Stinner
2022-03-03
5
-14/+11
*
bpo-46848: Move _PyBytes_Find() to internal C API (GH-31642)
Victor Stinner
2022-03-02
1
-0/+19
*
bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)
Inada Naoki
2022-03-01
1
-2/+15
*
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Mark Shannon
2022-03-01
1
-1/+10
*
bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)
Brandt Bucher
2022-03-01
1
-4/+12
*
bpo-46753: Add the empty tuple to the _PyRuntimeState.global_objects. (gh-31345)
Eric Snow
2022-02-28
4
-20/+44
*
bpo-45431: Rename CFrame to _PyCFrame in the C API (GH-31584)
Victor Stinner
2022-02-28
1
-1/+1
*
bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)
Mark Shannon
2022-02-28
1
-9/+48
*
bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)
Brandt Bucher
2022-02-28
1
-1/+8
*
Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)
Kumar Aditya
2022-02-26
2
-2/+2
*
bpo-46816: Remove declarations for non-__STDC__ compilers (GH-31466)
Oleg Iarygin
2022-02-25
1
-9/+0
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
2
-31/+31
*
bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)
Victor Stinner
2022-02-25
1
-0/+1
*
bpo-45316: Move private functions to internal C API (GH-31579)
Victor Stinner
2022-02-25
3
-4/+16
*
bpo-45316: Move private PyDict functions to internal C API (GH-31577)
Victor Stinner
2022-02-25
1
-3/+19
*
bpo-45316: Move private PyCode C API to internal C API (GH-31576)
Victor Stinner
2022-02-25
1
-18/+44
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
1
-1/+8
*
bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)
Victor Stinner
2022-02-25
1
-0/+12
[next]