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
*
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
*
bpo-46841: Use inline cache for `BINARY_SUBSCR`. (GH-31618)
Mark Shannon
2022-03-01
3
-1/+19
*
bpo-46841: Use inline caching for `COMPARE_OP` (GH-31622)
Brandt Bucher
2022-03-01
2
-4/+13
*
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
2
-7/+9
*
bpo-46841: Move the cache for `LOAD_GLOBAL` inline. (GH-31575)
Mark Shannon
2022-02-28
2
-17/+60
*
bpo-46841: Use inline caching for `UNPACK_SEQUENCE` (GH-31591)
Brandt Bucher
2022-02-28
2
-1/+9
*
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
4
-34/+34
*
bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)
Victor Stinner
2022-02-25
2
-2/+1
*
bpo-45316: Move private functions to internal C API (GH-31579)
Victor Stinner
2022-02-25
6
-15/+16
*
bpo-45316: Move private PyDict functions to internal C API (GH-31577)
Victor Stinner
2022-02-25
2
-17/+19
*
bpo-45316: Move private PyCode C API to internal C API (GH-31576)
Victor Stinner
2022-02-25
2
-37/+44
*
bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)
Brandt Bucher
2022-02-25
3
-72/+84
*
bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)
Victor Stinner
2022-02-25
2
-13/+12
*
bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)
Petr Viktorin
2022-02-25
2
-4/+2
*
bpo-46656: Remove Py_NO_NAN macro (GH-31160)
Victor Stinner
2022-02-25
2
-8/+3
*
bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)
Mark Shannon
2022-02-24
2
-35/+38
*
bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)
Kumar Aditya
2022-02-24
1
-1/+1
*
bpo-45459: C API uses type names rather than structure names (GH-31528)
Victor Stinner
2022-02-24
16
-55/+51
*
bpo-45459: Add pytypedefs.h header file (GH-31527)
Victor Stinner
2022-02-24
13
-40/+39
*
bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...
Dennis Sweeney
2022-02-24
1
-0/+1
*
bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)
Brandt Bucher
2022-02-23
1
-1/+1
*
bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)
Victor Stinner
2022-02-23
3
-65/+64
*
bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...
Eric Snow
2022-02-23
3
-2/+64
*
bpo-45459: Rename buffer.h to pybuffer.h (#31201)
Victor Stinner
2022-02-22
3
-3/+5
*
Move call specializations from CALL to PRECALL. (GH-31496)
Mark Shannon
2022-02-22
2
-44/+49
*
dict: Add dk_log2_index_bytes (GH-31439)
Inada Naoki
2022-02-22
1
-1/+4
*
bpo-46329: Change calling sequence (again) (GH-31373)
Mark Shannon
2022-02-18
1
-67/+67
*
bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)
Brandt Bucher
2022-02-16
2
-5/+11
*
bpo-46541: Discover the global strings. (gh-31346)
Eric Snow
2022-02-15
2
-13/+11
*
bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)
Petr Viktorin
2022-02-11
1
-1/+1
*
bpo-45490: Rename static inline functions (GH-31217)
Victor Stinner
2022-02-11
2
-31/+31
*
bpo-45923: Add `RESUME_QUICK` (GH-31244)
Brandt Bucher
2022-02-10
1
-9/+10
*
bpo-46430: Intern strings in deep-frozen modules (GH-30683)
Kumar Aditya
2022-02-09
1
-0/+2
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
13
-9/+682
*
bpo-46521: Fix codeop to use a new partial-input mode of the parser (GH-31010)
Pablo Galindo Salgado
2022-02-08
2
-1/+5
*
bpo-46675: Allow object value arrays and split key dictionaries larger than 1...
Mark Shannon
2022-02-08
1
-4/+22
*
bpo-46640: Py_NAN now uses the C99 NAN constant (GH-31134)
Victor Stinner
2022-02-06
1
-21/+10
*
bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...
Kumar Aditya
2022-02-04
1
-0/+1
*
Merge remote-tracking branch 'upstream/main'
Pablo Galindo
2022-02-03
1
-4/+2
|
\
|
*
Pass reference to func, as well as args, when pushing frame. (GH-31100)
Mark Shannon
2022-02-03
1
-4/+2
[next]