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
/
frameobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)
Irit Katriel
2022-04-01
1
-3/+1
*
bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)
Mark Shannon
2022-03-31
1
-0/+22
*
bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...
Irit Katriel
2022-03-31
1
-1/+6
*
bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH...
Mark Shannon
2022-03-25
1
-6/+17
*
bpo-47045: Remove `f_state` field (GH-31963)
Mark Shannon
2022-03-22
1
-42/+83
*
bpo-46841: Quicken code in-place (GH-31888)
Brandt Bucher
2022-03-21
1
-9/+30
*
bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)
Victor Stinner
2022-03-18
1
-11/+0
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
1
-10/+10
*
bpo-45316: Move private PyCode C API to internal C API (GH-31576)
Victor Stinner
2022-02-25
1
-3/+3
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-3/+1
*
bpo-46670: Remove unused get_frame_state() function (GH-31177)
Victor Stinner
2022-02-07
1
-9/+0
*
Pass reference to func, as well as args, when pushing frame. (GH-31100)
Mark Shannon
2022-02-03
1
-0/+2
*
bpo-46072: Add some frame stats. (GH-31060)
Mark Shannon
2022-02-02
1
-0/+1
*
bpo-46409: Make generators in bytecode (GH-30633)
Mark Shannon
2022-01-20
1
-3/+7
*
bpo-46009: Remove GEN_START (GH-30367)
Brandt Bucher
2022-01-04
1
-3/+5
*
bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)
Irit Katriel
2022-01-04
1
-1/+0
*
bpo-46039: Split yield from in two (GH-30035)
Mark Shannon
2021-12-15
1
-1/+7
*
bpo-45292: [PEP-654] add except* (GH-29581)
Irit Katriel
2021-12-14
1
-1/+4
*
bpo-45813: Drop redundant assertion from frame.clear() (GH-29990)
Andrew Svetlov
2021-12-08
1
-1/+4
*
bpo-45786: Allocate space for frame in frame object. (GH-29729)
Mark Shannon
2021-11-29
1
-115/+26
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-8/+24
*
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon
2021-10-28
1
-6/+5
*
bpo-45522: Allow to disable freelists on build time (GH-29056)
Christian Heimes
2021-10-21
1
-6/+17
*
Fix typos in the Objects directory (GH-28766)
Christian Clauss
2021-10-06
1
-1/+1
*
bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720)
Serhiy Storchaka
2021-10-04
1
-2/+2
*
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...
Serhiy Storchaka
2021-10-03
1
-2/+2
*
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon
2021-08-25
1
-17/+7
*
bpo-44872: use new trashcan macros in framobject.c (#27683)
Irit Katriel
2021-08-09
1
-2/+2
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-160/+136
*
bpo-43693: Turn localspluskinds into an object (GH-26749)
Guido van Rossum
2021-06-21
1
-2/+2
*
bpo-44032: Move pointer to code object from frame-object to frame specials ar...
Mark Shannon
2021-06-18
1
-16/+23
*
Do not clear globals or builtins when calling clear() on a frame object. Reve...
Mark Shannon
2021-06-17
1
-5/+4
*
bpo-43693: Eliminate unused "fast locals". (gh-26587)
Eric Snow
2021-06-15
1
-78/+13
*
bpo-43693: Do not check co_cell2arg if a non-cell offset. (gh-26626)
Eric Snow
2021-06-09
1
-2/+5
*
bpo-43693: Un-revert commit f3fa63e. (#26609)
Eric Snow
2021-06-08
1
-13/+116
*
Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...
Pablo Galindo
2021-06-08
1
-115/+13
*
bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offsets. (gh-2...
Eric Snow
2021-06-07
1
-13/+115
*
bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577)
Eric Snow
2021-06-07
1
-146/+79
*
bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b...
Pablo Galindo
2021-06-04
1
-79/+146
*
bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas...
Eric Snow
2021-06-03
1
-146/+79
*
bpo-43693: Clean up the PyCodeObject fields. (GH-26364)
Eric Snow
2021-05-26
1
-15/+9
*
bpo-44032: Fix downcast conversion in frameobject.c (GH-26291)
Pablo Galindo
2021-05-21
1
-1/+1
*
bpo-44032: Move data stack to thread from FrameObject. (GH-26076)
Mark Shannon
2021-05-21
1
-130/+137
*
bpo-40222: "Zero cost" exception handling (GH-25729)
Mark Shannon
2021-05-07
1
-164/+163
*
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Steve Dower
2021-04-30
1
-1/+1
*
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
Ryan Hileman
2021-04-29
1
-1/+1
*
bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line n...
Mark Shannon
2021-04-29
1
-1/+7
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
1
-1/+2
*
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...
Mark Shannon
2021-04-01
1
-10/+19
*
bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918)
Victor Stinner
2021-03-18
1
-1/+1
[next]