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
/
call.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-37540: vectorcall: keyword names must be strings (GH-14682)
Jeroen Demeyer
2019-08-16
1
-6/+19
*
bpo-29548: no longer use PyEval_Call* functions (GH-14683)
Jeroen Demeyer
2019-07-11
1
-1/+10
*
bpo-37151: remove _PyMethodDef_RawFastCall* functions (GH-14603)
Jeroen Demeyer
2019-07-05
1
-259/+0
*
bpo-36974: separate vectorcall functions for each calling convention (GH-13781)
Jeroen Demeyer
2019-07-05
1
-21/+1
*
bpo-36904: Optimize _PyStack_UnpackDict (GH-14517)
Jeroen Demeyer
2019-07-02
1
-63/+85
*
bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)
Jeroen Demeyer
2019-06-28
1
-0/+32
*
bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858)
Jeroen Demeyer
2019-06-24
1
-1/+1
*
bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)
Jeroen Demeyer
2019-06-20
1
-18/+0
*
bpo-37151: remove _PyFunction_FastCallDict (GH-13864)
Jeroen Demeyer
2019-06-18
1
-88/+0
*
bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)
Victor Stinner
2019-06-17
1
-0/+8
*
bpo-37231: remove _PyObject_FastCall_Prepend (GH-14153)
Jeroen Demeyer
2019-06-17
1
-36/+0
*
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
Jeroen Demeyer
2019-06-14
1
-3/+0
*
bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)
Petr Viktorin
2019-06-02
1
-1/+11
*
bpo-37122: Make co->co_argcount represent the total number of positonal argum...
Pablo Galindo
2019-06-01
1
-4/+4
*
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Jeroen Demeyer
2019-05-30
1
-5/+5
*
bpo-36974: remove _PyObject_HasFastCall (GH-13460)
Jeroen Demeyer
2019-05-30
1
-16/+0
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
1
-103/+105
*
bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516)
Michael J. Sullivan
2019-05-26
1
-16/+29
*
bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381)
Jeroen Demeyer
2019-05-22
1
-5/+12
*
Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343)
Jeroen Demeyer
2019-05-17
1
-1/+1
*
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo
2019-04-29
1
-4/+4
*
bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032)
Sergey Fedoseev
2019-02-25
1
-25/+4
*
bpo-36030: Add _PyTuple_FromArray() function (GH-11954)
Sergey Fedoseev
2019-02-25
1
-28/+2
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-7/+7
*
bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)
Victor Stinner
2018-11-25
1
-0/+1
*
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-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434)
Victor Stinner
2018-11-09
1
-11/+11
*
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner
2018-11-01
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
Fix issue 34551 - remove redundant store (#9009)
Eric Lippert
2018-10-22
1
-1/+1
*
bpo-33720: Refactor marshalling/unmarshalling floats. (GH-8071)
Serhiy Storchaka
2018-07-24
1
-1/+1
*
bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...
Serhiy Storchaka
2017-12-15
1
-21/+25
*
bpo-31835: Optimize also FASTCALL using __future__ (#4087)
Victor Stinner
2017-10-25
1
-2/+2
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
bpo-31347: _PyObject_FastCall_Prepend: do not call memcpy if args might not b...
Benjamin Peterson
2017-09-05
1
-3/+3
*
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (...
Stefan Krah
2017-08-21
1
-2/+2
*
bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_Ev...
Zackery Spytz
2017-07-31
1
-1/+1
*
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Serhiy Storchaka
2017-07-03
1
-2/+19
*
bpo-30534: Fixed error messages when pass keyword arguments (#1901)
Serhiy Storchaka
2017-06-06
1
-24/+25
*
bpo-29924: Remove useless argument (#854)
Sylvain
2017-03-27
1
-1/+1
*
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ...
Serhiy Storchaka
2017-03-21
1
-6/+8
*
bpo-29735: Optimize partial_call(): avoid tuple (#516)
Victor Stinner
2017-03-14
1
-0/+16
*
bpo-29548: Recommend PyObject_Call APIs over PyEval_Call APIs. (GH-75)
INADA Naoki
2017-03-14
1
-33/+24
*
bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87)
INADA Naoki
2017-03-01
1
-6/+7
*
Document why functools.partial() must copy kwargs (#253)
Victor Stinner
2017-02-23
1
-2/+2
*
bpo-29524: Add Objects/call.c file (#12)
Victor Stinner
2017-02-12
1
-0/+1368
*
Backed out changeset f23fa1f7b68f
Victor Stinner
2017-02-10
1
-1368/+0
*
Issue #29465: Add Objects/call.c file
Victor Stinner
2017-02-10
1
-0/+1368