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-42990: Further refactoring of PyEval_ functions. (GH-24368)
Mark Shannon
2021-02-01
1
-29/+22
*
bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...
Mark Shannon
2021-01-29
1
-52/+33
*
bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)
Mark Shannon
2021-01-05
1
-7/+5
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
1
-25/+11
*
bpo-40941: Unify implicit and explicit state in the frame and generator objec...
Mark Shannon
2020-07-17
1
-45/+45
*
bpo-40521: Cleanup code of free lists (GH-21082)
Victor Stinner
2020-06-23
1
-6/+12
*
Restrict co_code to be under INT_MAX in codeobject (GH-20628)
Ammar Askar
2020-06-10
1
-3/+3
*
bpo-40887: Don't use finalized free lists (GH-20700)
Victor Stinner
2020-06-08
1
-0/+12
*
bpo-40521: Make frame free list per-interpreter (GH-20638)
Victor Stinner
2020-06-04
1
-49/+37
*
Fix MSVC warning in frameobject.c (GH-20590)
Ammar Askar
2020-06-04
1
-1/+3
*
bpo-40521: Disable free lists in subinterpreters (GH-19937)
Victor Stinner
2020-05-05
1
-76/+121
*
bpo-40228: More robust frame.setlineno. (GH-19437)
Mark Shannon
2020-04-29
1
-312/+251
*
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
Victor Stinner
2020-04-29
1
-0/+10
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
1
-6/+3
*
bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)
Victor Stinner
2020-04-28
1
-0/+1
*
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)
Victor Stinner
2020-04-28
1
-21/+31
*
bpo-40421: Add PyFrame_GetCode() function (GH-19757)
Victor Stinner
2020-04-28
1
-0/+7
*
bpo-40421: Add pyframe.h header file (GH-19755)
Victor Stinner
2020-04-28
1
-2/+5
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-1/+1
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
1
-4/+6
*
closes bpo-39630: Update pointers to string literals to be const char *. (GH-...
Andy Lester
2020-02-14
1
-1/+1
*
bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)
Victor Stinner
2020-01-21
1
-1/+1
*
Produce cleaner bytecode for 'with' and 'async with' by generating separate c...
Mark Shannon
2019-11-21
1
-172/+378
*
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner
2019-08-26
1
-1/+1
*
bpo-37830: Fix compilation of break and continue in finally. (GH-15320)
Serhiy Storchaka
2019-08-24
1
-7/+16
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-2/+2
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-1/+4
*
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...
Zackery Spytz
2018-12-17
1
-0/+4
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-3/+4
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-2/+2
*
bpo-33041: Fix downcast warning on Windows (#6595)
Victor Stinner
2018-04-27
1
-1/+1
*
bpo-30953: Improve error messages and add tests for jumping (GH-6196)
Serhiy Storchaka
2018-03-23
1
-2/+6
*
bpo-33041: Rework compiling an "async for" loop. (#6142)
Serhiy Storchaka
2018-03-23
1
-12/+9
*
bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-6107)
xdegaye
2018-03-13
1
-4/+35
*
bpo-33026: Fix jumping out of "with" block by setting f_lineno. (#6026)
Serhiy Storchaka
2018-03-11
1
-9/+15
*
closes bpo-32980 Remove _PyFrame_Init (GH-5965)
Thomas Nyberg
2018-03-04
1
-8/+0
*
bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter t...
Serhiy Storchaka
2018-02-22
1
-126/+77
*
bpo-32690: Preserve order of locals() (#5379)
Raymond Hettinger
2018-01-28
1
-2/+2
*
bpo-32468: Better frame repr() (#5067)
Antoine Pitrou
2017-12-31
1
-1/+10
*
Move exc state to generator. Fixes bpo-25612 (#1773)
Mark Shannon
2017-10-22
1
-12/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
bpo-31344: Per-frame control of trace events (GH-3417)
Nick Coghlan
2017-09-08
1
-0/+4
*
Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function.
INADA Naoki
2016-12-24
1
-4/+16
*
Issue #28618: Make hot functions using __attribute__((hot))
Victor Stinner
2016-11-11
1
-2/+2
*
Issue #27129: Replaced wordcode related magic constants with macros.
Serhiy Storchaka
2016-09-11
1
-2/+2
*
Issue #20041: Fixed TypeError when frame.f_trace is set to None.
Serhiy Storchaka
2016-06-04
1
-0/+2
|
\
[next]