GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Python
/
ceval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-43152: Update assert statement to remove unused warning (GH-24473)
Dong-hee Na
2021-02-14
1
-2
/
+1
*
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
Mark Shannon
2021-02-01
1
-123
/
+200
*
bpo-42927: Inline cache for attributes defined with '__slots__' (#24216)
Guido van Rossum
2021-01-29
1
-64
/
+116
*
bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...
Mark Shannon
2021-01-29
1
-62
/
+68
*
Update frame.f_lineno before any call to the (C) tracing function. (GH-24150)
Mark Shannon
2021-01-07
1
-33
/
+54
*
bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099)
Mark Shannon
2021-01-05
1
-10
/
+11
*
bpo-42246: Make sure that `f_lasti`, and thus `f_lineno`, is set correctly af...
Mark Shannon
2020-12-17
1
-1
/
+5
*
bpo-42500: Fix recursion in or after except (GH-23568)
Mark Shannon
2020-12-02
1
-9
/
+11
*
bpo-42202: Store func annotations as a tuple (GH-23316)
Yurii Karabas
2020-11-25
1
-1
/
+1
*
bpo-42296: On Windows, fix CTRL+C regression (GH-23257)
Victor Stinner
2020-11-13
1
-5
/
+33
*
bpo-42246: Partial implementation of PEP 626. (GH-23113)
Mark Shannon
2020-11-12
1
-43
/
+30
*
bpo-42266: Handle monkey-patching descriptors in LOAD_ATTR cache (GH-23157)
Pablo Galindo
2020-11-05
1
-7
/
+1
*
bpo-42099: Fix reference to ob_type in unionobject.c and ceval (GH-22829)
Neil Schemenauer
2020-10-27
1
-1
/
+1
*
bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...
Serhiy Storchaka
2020-10-26
1
-2
/
+9
*
bpo-42093: Add opcode cache for LOAD_ATTR (GH-22803)
Pablo Galindo
2020-10-20
1
-5
/
+216
*
bpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev
2020-10-09
1
-14
/
+7
*
bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (GH-22552)
Serhiy Storchaka
2020-10-05
1
-3
/
+0
*
bpo-21955: Change my nickname in BINARY_ADD comment (GH-22481)
Victor Stinner
2020-10-01
1
-1
/
+1
*
bpo-41670: Remove outdated predict macro invocation. (GH-22026)
Mark Shannon
2020-09-29
1
-2
/
+0
*
bpo-40941: Fix stackdepth compiler warnings (GH-22377)
Victor Stinner
2020-09-23
1
-4
/
+4
*
bpo-41834: Remove _Py_CheckRecursionLimit variable (GH-22359)
Victor Stinner
2020-09-23
1
-13
/
+3
*
bpo-41756: Introduce PyGen_Send C API (GH-22196)
Vladimir Matveev
2020-09-18
1
-17
/
+41
*
bpo-40941: Unify implicit and explicit state in the frame and generator objec...
Mark Shannon
2020-07-17
1
-16
/
+27
*
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner
2020-06-22
1
-9
/
+9
*
bpo-40925: Remove unused stack macro SET_VALUE (GH-20783)
Dong-hee Na
2020-06-11
1
-1
/
+0
*
bpo-39465: Use _PyInterpreterState_GET() (GH-20788)
Victor Stinner
2020-06-10
1
-2
/
+2
*
bpo-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615)
Victor Stinner
2020-06-04
1
-22
/
+36
*
PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598)
Victor Stinner
2020-06-02
1
-3
/
+2
*
PyOS_AfterFork_Child() uses PyStatus (GH-20596)
Victor Stinner
2020-06-02
1
-7
/
+6
*
bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)
Victor Stinner
2020-06-01
1
-13
/
+12
*
bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236)
Dennis Sweeney
2020-05-22
1
-15
/
+16
*
Fix typo in code comment in main_loop label. (GH-20068)
Chris Jerdonek
2020-05-14
1
-1
/
+1
*
bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024)
scoder
2020-05-12
1
-2
/
+2
*
bpo-39465: Don't access directly _Py_Identifier members (GH-20043)
Victor Stinner
2020-05-12
1
-1
/
+1
*
bpo-40513: Per-interpreter GIL (GH-19943)
Victor Stinner
2020-05-05
1
-2
/
+46
*
bpo-40522: _PyThreadState_Swap() sets autoTSSkey (GH-19939)
Victor Stinner
2020-05-05
1
-0
/
+13
*
Revert "bpo-40513: Per-interpreter signals pending (GH-19924)" (GH-19932)
Victor Stinner
2020-05-05
1
-29
/
+36
*
bpo-40513: Per-interpreter recursion_limit (GH-19929)
Victor Stinner
2020-05-05
1
-10
/
+14
*
bpo-40513: Per-interpreter gil_drop_request (GH-19927)
Victor Stinner
2020-05-05
1
-39
/
+36
*
bpo-40513: Per-interpreter signals pending (GH-19924)
Victor Stinner
2020-05-05
1
-5
/
+5
*
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)
Victor Stinner
2020-04-29
1
-6
/
+8
*
bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691)
Victor Stinner
2020-04-24
1
-1
/
+1
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1
/
+0
*
bpo-40268: Remove explicit pythread.h includes (#19529)
Victor Stinner
2020-04-15
1
-1
/
+0
*
bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515)
Victor Stinner
2020-04-14
1
-2
/
+3
*
bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (G...
Dong-hee Na
2020-04-15
1
-2
/
+3
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2
/
+2
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
1
-1
/
+1
*
bpo-40082: trip_signal() uses the main interpreter (GH-19441)
Victor Stinner
2020-04-08
1
-58
/
+59
*
bpo-37127: Remove _pending_calls.finishing (GH-19439)
Victor Stinner
2020-04-08
1
-16
/
+0
[next]