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
*
bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)
Victor Stinner
2021-12-02
1
-1/+1
*
bpo-44530: Reverts a change to the 'code.__new__' audit event (GH-29809)
Steve Dower
2021-11-27
1
-4/+4
*
bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)
Serhiy Storchaka
2021-10-04
1
-10/+6
*
Fix a SystemError in code.replace() (#27771)
Guido van Rossum
2021-08-16
1
-3/+5
*
Remove legacy opcache structs (GH-27164)
Ken Jin
2021-07-16
1
-1/+1
*
bpo-43950: Add option to opt-out of PEP-657 (GH-27023)
Ammar Askar
2021-07-07
1
-10/+37
*
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta
2021-07-07
1
-20/+36
*
bpo-43950: use 0-indexed column offsets for bytecode positions (GH-27011)
Batuhan Taskaya
2021-07-04
1
-11/+8
*
bpo-43950: Add code.co_positions (PEP 657) (GH-26955)
Pablo Galindo
2021-07-02
1
-8/+211
*
bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)
Guido van Rossum
2021-06-23
1
-7/+0
*
bpo-43693: Turn localspluskinds into an object (GH-26749)
Guido van Rossum
2021-06-21
1
-19/+24
*
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Eric Snow
2021-06-15
1
-74/+36
*
bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638)
Mark Shannon
2021-06-14
1
-68/+6
*
Add more const modifiers. (GH-26691)
Serhiy Storchaka
2021-06-12
1
-3/+3
*
bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)
Eric Snow
2021-06-07
1
-71/+348
*
bpo-44187: Quickening infrastructure (GH-26264)
Mark Shannon
2021-06-07
1
-1/+9
*
bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...
Pablo Galindo
2021-06-04
1
-339/+70
*
bpo-43693: Compute deref offsets in compiler (gh-25152)
Mark Shannon
2021-06-04
1
-7/+2
*
bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...
Eric Snow
2021-06-03
1
-70/+344
*
bpo-43693: Add _PyCode_New(). (gh-26375)
Eric Snow
2021-05-27
1
-147/+206
*
bpo-43693: Clean up the PyCodeObject fields. (GH-26364)
Eric Snow
2021-05-26
1
-21/+30
*
bpo-44032: Move data stack to thread from FrameObject. (GH-26076)
Mark Shannon
2021-05-21
1
-3/+2
*
bpo-43693: Group the code in codeobject.c logically. (gh-26216)
Eric Snow
2021-05-19
1
-572/+622
*
bpo-40222: "Zero cost" exception handling (GH-25729)
Mark Shannon
2021-05-07
1
-12/+23
*
bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)
Mark Shannon
2021-04-29
1
-20/+21
*
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...
Mark Shannon
2021-04-01
1
-1/+1
*
bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24...
Pablo Galindo
2021-01-30
1
-2/+2
*
bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)
Mark Shannon
2021-01-05
1
-1/+2
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-1/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-8/+8
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
1
-77/+311
*
bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803)
Pablo Galindo
2020-10-20
1
-2/+2
*
bpo-41263: Convert code.__new__ to Argument Clinic (GH-21426)
Serhiy Storchaka
2020-07-10
1
-37/+36
*
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner
2020-06-22
1
-2/+2
*
Restrict co_code to be under INT_MAX in codeobject (GH-20628)
Ammar Askar
2020-06-10
1
-0/+8
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
1
-3/+3
*
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner
2020-04-14
1
-1/+2
*
bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379)
Victor Stinner
2020-04-07
1
-1/+1
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-1/+1
*
bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215)
Victor Stinner
2020-01-27
1
-26/+46
*
Document CodeType.replace (GH-17776)
Anthony Sottile
2020-01-01
1
-2/+2
*
bpo-38922: Raise code.__new__ audit event when code object replace() is calle...
Steve Dower
2019-11-27
1
-0/+7
*
bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...
Pablo Galindo
2019-07-01
1
-15/+31
*
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997)
Victor Stinner
2019-06-12
1
-1/+1
*
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13809)
Victor Stinner
2019-06-04
1
-1/+2
*
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
Inada Naoki
2019-06-03
1
-0/+65
*
bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707)
Pablo Galindo
2019-06-01
1
-3/+3
*
bpo-37122: Make co->co_argcount represent the total number of positonal argum...
Pablo Galindo
2019-06-01
1
-6/+5
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-2/+2
[next]