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
/
Python
/
ceval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-1/+1
*
bpo-36974: separate vectorcall functions for each calling convention (GH-13781)
Jeroen Demeyer
2019-07-05
1
-4/+4
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-1/+1
*
bpo-37484: use _PyObject_Vectorcall for __exit__ (GH-14557)
Jeroen Demeyer
2019-07-03
1
-5/+3
*
bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-...
Jörn Heissler
2019-06-22
1
-2/+2
*
bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)
Jeroen Demeyer
2019-06-20
1
-4/+4
*
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
Jeroen Demeyer
2019-06-14
1
-4/+0
*
bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)
Victor Stinner
2019-06-13
1
-2/+1
*
Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)
Victor Stinner
2019-06-04
1
-15/+11
*
bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787)
Inada Naoki
2019-06-03
1
-0/+7
*
Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-06-03
1
-205/+130
*
bpo-26219: remove unused code (GH-13775)
Inada Naoki
2019-06-03
1
-3/+0
*
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
Inada Naoki
2019-06-03
1
-1/+142
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13...
Eric Snow
2019-06-01
1
-131/+205
*
bpo-37122: Make co->co_argcount represent the total number of positonal argum...
Pablo Galindo
2019-06-01
1
-31/+15
*
bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)
Eric Snow
2019-06-01
1
-11/+15
*
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Jeroen Demeyer
2019-05-30
1
-4/+4
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
1
-55/+37
*
bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...
Matthias Bussonnier
2019-05-28
1
-39/+0
*
bpo-36710: Add tstate parameter in ceval.c (GH-13547)
Victor Stinner
2019-05-24
1
-346/+386
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+23
*
bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241)
Victor Stinner
2019-05-13
1
-2/+1
*
bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934)
Victor Stinner
2019-05-10
1
-165/+204
*
bpo-36851: Clean the frame stack if the execution ends with a return and the ...
Pablo Galindo
2019-05-09
1
-7/+9
*
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith
2019-05-08
1
-4/+6
*
bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)
Victor Stinner
2019-05-04
1
-1/+0
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-18/+100
*
Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006)
Victor Stinner
2019-04-29
1
-11/+5
*
bpo-36356: Destroy the GIL at exit (GH-12453)
Victor Stinner
2019-04-29
1
-5/+11
*
bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly ...
Joannah Nanjekye
2019-04-29
1
-12/+16
*
Fix typo in 'tandem' word (GH-12998) (GH-12998)
Andrey
2019-04-29
1
-1/+1
*
bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)
Victor Stinner
2019-04-17
1
-0/+4
*
bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()...
Eric Snow
2019-04-12
1
-78/+64
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12...
Eric Snow
2019-04-12
1
-64/+78
*
bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)
Stefan Krah
2019-03-25
1
-3/+3
*
bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432)
Victor Stinner
2019-03-19
1
-2/+11
*
bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246)
Eric Snow
2019-03-15
1
-21/+61
*
bpo-33608: Fix PyEval_InitThreads() warning (GH-12346)
Victor Stinner
2019-03-15
1
-1/+1
*
bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)
Eric Snow
2019-03-09
1
-39/+10
*
bpo-33608: Minor cleanup related to pending calls. (gh-12247)
Eric Snow
2019-03-09
1
-32/+48
*
Simplify DISPATCH by hoisting eval_breaker ahead of time. (gh-12243)
Eric Snow
2019-03-09
1
-2/+3
*
Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-03-04
1
-118/+82
*
bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. ...
Eric Snow
2019-03-01
1
-2/+3
*
bpo-36030: Add _PyTuple_FromArray() function (GH-11954)
Sergey Fedoseev
2019-02-25
1
-6/+1
*
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka
2019-02-25
1
-22/+54
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...
Eric Snow
2019-02-24
1
-82/+117
*
bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-1...
Eric Snow
2019-02-23
1
-1/+8
*
bpo-12822: use monotonic clock for condvar if possible (GH-11723)
Inada Naoki
2019-02-20
1
-0/+1
*
bpo-35634: Raise an error when first passed kwargs contains duplicated keys. ...
Serhiy Storchaka
2019-01-12
1
-48/+45
*
bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972)
Eric Snow
2019-01-11
1
-25/+83
[next]