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
*
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
*
bpo-45923: Decouple suspension of tracing from tracing flag. (GH-31908)
Mark Shannon
2022-03-15
1
-6/+1
*
bpo-46987: Remove _PySys_GetObjectId / _PySys_GetObjectId (GH-31835)
Dong-hee Na
2022-03-14
1
-2/+0
*
bpo-46841: Add a _Py_SET_OPCODE macro (GH-31780)
Brandt Bucher
2022-03-12
1
-0/+3
*
bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)
Victor Stinner
2022-03-11
2
-48/+9
*
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
2
-0/+7
*
bpo-46841: Use inline caching for calls (GH-31709)
Brandt Bucher
2022-03-07
6
-186/+105
*
Post 3.11.0a6
Pablo Galindo
2022-03-07
1
-1/+1
*
Python 3.11.0a6
v3.11.0a6
Pablo Galindo
2022-03-07
1
-2/+2
*
bpo-46864: Deprecate PyBytesObject.ob_shash. (GH-31598)
Inada Naoki
2022-03-06
1
-1/+1
*
bpo-46841: Fix error message hacks in `GET_AWAITABLE` (GH-31664)
Brandt Bucher
2022-03-04
1
-8/+8
*
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
2
-26/+115
*
bpo-45459: Use type names in the internal C API (GH-31669)
Victor Stinner
2022-03-03
5
-14/+11
*
bpo-45459: Fix PyModuleDef_Slot type in the limited C API (GH-31668)
Victor Stinner
2022-03-03
2
-4/+3
*
bpo-46848: Move _PyBytes_Find() to internal C API (GH-31642)
Victor Stinner
2022-03-02
2
-19/+19
*
bpo-46848: Use stringlib/fastsearch in mmap (GH-31625)
Dennis Sweeney
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
[next]