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
/
Objects
/
codeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix possible refleak in CodeType.replace() (GH-106243)
Serhiy Storchaka
2023-06-29
1
-0/+1
*
GH-104584: Assorted fixes for the optimizer API. (GH-105683)
Mark Shannon
2023-06-19
1
-4/+20
*
GH-100987: Allow objects other than code objects as the "executable" of an in...
Mark Shannon
2023-06-14
1
-73/+0
*
GH-104584: Plugin optimizer API (GH-105100)
Mark Shannon
2023-06-02
1
-0/+7
*
gh-92536: Remove PyUnicode_READY() calls (#105210)
Victor Stinner
2023-06-01
1
-15/+0
*
GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...
Mark Shannon
2023-04-12
1
-69/+38
*
gh-101865: Deprecate `co_lnotab` from code objects as per PEP 626 (#101866)
Nikita Sobolev
2023-04-03
1
-0/+5
*
gh-102381: don't call watcher callback with dead object (#102382)
Carl Meyer
2023-03-08
1
-1/+37
*
gh-101101: Unstable C API tier (PEP 689) (GH-101102)
Petr Viktorin
2023-02-28
1
-4/+5
*
gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)
Steve Dower
2023-02-20
1
-10/+10
*
GH-100117: Make `co_lines` more efficient (GH-100447)
Brandt Bucher
2023-01-10
1
-32/+18
*
GH-100719: Remove the `co_nplaincellvars` field from code objects. (GH-100721)
Mark Shannon
2023-01-04
1
-10/+4
*
gh-94155: Reduce hash collisions for code objects (#100183)
Dennis Sweeney
2022-12-23
1
-20/+33
*
GH-100000: Cleanup and polish various watchers code (GH-99998)
Itamar Ostricher
2022-12-14
1
-4/+11
*
GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...
Mark Shannon
2022-12-14
1
-5/+6
*
GH-98522: Add version number to code objects. (GH-98525)
Mark Shannon
2022-12-09
1
-2/+4
*
GH-91054: Add code object watchers API (GH-99859)
Itamar Ostricher
2022-12-02
1
-0/+63
*
gh-99845: Clean up _PyObject_VAR_SIZE() usage (#99847)
Victor Stinner
2022-11-29
1
-6/+4
*
gh-99300: Use Py_NewRef() in Objects/ directory (#99332)
Victor Stinner
2022-11-10
1
-34/+17
*
GH-96421: Insert shim frame on entry to interpreter (GH-96319)
Mark Shannon
2022-11-10
1
-0/+75
*
GH-98686: Quicken everything (GH-98687)
Brandt Bucher
2022-11-02
1
-10/+6
*
gh-95756: Free and NULL-out code caches when needed (GH-98181)
Ken Jin
2022-10-11
1
-0/+1
*
gh-95756: Lazily created cached co_* attrs (GH-97791)
Ken Jin
2022-10-11
1
-10/+67
*
GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...
Brandt Bucher
2022-10-05
1
-3/+19
*
gh-94808: `_PyLineTable_StartsLine` was not used (GH-96609)
Nikita Sobolev
2022-10-03
1
-27/+0
*
GH-96187: Prevent _PyCode_GetExtra to return garbage for negative indexes (GH...
Pablo Galindo Salgado
2022-08-23
1
-1/+1
*
gh-94936: C getters: co_varnames, co_cellvars, co_freevars (#95008)
Ken Jin
2022-08-04
1
-0/+18
*
GH-95150: Use position and exception tables for code hashing and equality (GH...
Brandt Bucher
2022-08-01
1
-1/+18
*
GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)
Brandt Bucher
2022-07-22
1
-1/+1
*
Fix PyCode_Addr2Location when addrq < 0 (GH-95091)
Ken Jin
2022-07-21
1
-0/+1
*
GH-94262: Don't create frame objects for frames that aren't yet complete. (GH...
Mark Shannon
2022-07-01
1
-6/+5
*
gh-88116: Avoid undefined behavior when decoding varints in code objects (#94...
Pablo Galindo Salgado
2022-06-28
1
-8/+8
*
gh-93382: Sync up `co_code` changes with 3.11 (GH-94227)
Ken Jin
2022-06-24
1
-1/+1
*
GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961)
Irit Katriel
2022-06-20
1
-1/+6
*
GH-93516: Speedup line number checks when tracing. (GH-93763)
Mark Shannon
2022-06-20
1
-0/+56
*
GH-93897: Store frame size in code object and de-opt if insufficient space on...
Mark Shannon
2022-06-20
1
-0/+2
*
GH-93516: Store offset of first traceable instruction in code object (GH-93769)
Mark Shannon
2022-06-14
1
-0/+6
*
gh-93728: fix memory leak in deepfrozen code objects (GH-93729)
Kumar Aditya
2022-06-12
1
-0/+1
*
gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383)
Ken Jin
2022-06-03
1
-0/+7
*
GH-92955: fix memory leak in code object lines and positions iterators (gh-92...
Kumar Aditya
2022-05-19
1
-4/+4
*
gh-92031: Deoptimize Static Code at Finalization (GH-92039)
Dennis Sweeney
2022-05-03
1
-10/+17
*
gh-92154: Expose PyCode_GetCode in the C API (GH-92168)
Ken Jin
2022-05-03
1
-0/+5
*
gh-91719: Add pycore_opcode.h internal header file (#91906)
Victor Stinner
2022-04-25
1
-0/+1
*
GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less...
Mark Shannon
2022-04-21
1
-1/+15
*
GH-88116: Use a compact format to represent end line and column offsets. (GH-...
Mark Shannon
2022-04-21
1
-169/+318
*
bpo-35134: Remove the Include/code.h header file (GH-32385)
Victor Stinner
2022-04-07
1
-1/+0
*
bpo-46841: Use a `bytes` object for `_co_code_adaptive` (GH-32205)
Brandt Bucher
2022-04-01
1
-2/+2
*
bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222)
Brandt Bucher
2022-04-01
1
-13/+13
*
bpo-46841: Quicken code in-place (GH-31888)
Brandt Bucher
2022-03-21
1
-112/+101
*
bpo-46841: Use inline caching for calls (GH-31709)
Brandt Bucher
2022-03-07
1
-4/+1
[next]