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
/
methodobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-106084: Remove _PyObject_CallMethod() function (#106159)
Victor Stinner
2023-06-27
1
-0/+1
*
gh-99300: Use Py_NewRef() in Objects/ directory (#99354)
Victor Stinner
2022-11-10
1
-10/+5
*
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner
2022-05-04
1
-7/+7
*
bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)
Christian Heimes
2022-03-30
1
-4/+16
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-5/+2
*
bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-...
Pablo Galindo Salgado
2021-08-10
1
-1/+5
*
bpo-42015: Reorder dereferencing calls in meth_dealloc, to make sure m_self i...
Yannick Jadoul
2020-10-12
1
-2/+4
*
bpo-38787: C API for module state access from extension methods (PEP 573) (GH...
Petr Viktorin
2020-05-07
1
-5/+78
*
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Victor Stinner
2020-04-15
1
-1/+0
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-3/+3
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2/+2
*
bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972)
Victor Stinner
2020-03-13
1
-0/+1
*
bpo-39884: Add method name in "bad call flags" error (GH-18944)
Victor Stinner
2020-03-12
1
-1/+2
*
bpo-36347: stop using RESTRICTED constants (GH-12684)
Jeroen Demeyer
2020-02-18
1
-1/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-1/+1
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-1/+1
*
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...
Victor Stinner
2019-11-20
1
-15/+0
*
bpo-37645: add new function _PyObject_FunctionStr() (GH-14890)
Jeroen Demeyer
2019-11-05
1
-17/+20
*
bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)
Victor Stinner
2019-11-05
1
-4/+7
*
bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)
Victor Stinner
2019-11-04
1
-22/+28
*
bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)
Jeroen Demeyer
2019-09-11
1
-1/+36
*
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner
2019-08-26
1
-1/+1
*
bpo-37340: remove free_list for bound method objects (GH-14232)
Inada Naoki
2019-07-26
1
-47/+6
*
bpo-36974: separate vectorcall functions for each calling convention (GH-13781)
Jeroen Demeyer
2019-07-05
1
-8/+157
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-1/+1
*
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Jeroen Demeyer
2019-05-30
1
-1/+1
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
1
-2/+11
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-5/+2
*
bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674)
Victor Stinner
2018-11-23
1
-1/+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
-2/+2
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-2/+2
*
bpo-35059: Convert PyObject_INIT() to function (GH-10077)
Victor Stinner
2018-10-26
1
-1/+1
*
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
Benjamin Peterson
2018-09-12
1
-1/+1
*
bpo-1617161: Make the hash and equality of methods not depending on the value...
Serhiy Storchaka
2018-07-31
1
-9/+1
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-1/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+2
*
bpo-29524: Add Objects/call.c file (#12)
Victor Stinner
2017-02-12
1
-323/+0
*
Backed out changeset f23fa1f7b68f
Victor Stinner
2017-02-10
1
-0/+323
*
Issue #29465: Add Objects/call.c file
Victor Stinner
2017-02-10
1
-323/+0
*
Fix PyCFunction_Call() performance issue
Victor Stinner
2017-02-09
1
-4/+50
*
Issue #29306: Fix usage of Py_EnterRecursiveCall()
Victor Stinner
2017-02-08
1
-25/+36
*
Issue #29263: LOAD_METHOD support for C methods
INADA Naoki
2017-02-02
1
-23/+30
*
Cleanup _PyMethodDef_RawFastCallDict()
Victor Stinner
2017-01-18
1
-11/+9
*
Rephrase !PyErr_Occurred() comment: may=>can
Victor Stinner
2017-01-18
1
-1/+1
*
PyCFunction_Call() now calls _PyCFunction_FastCallDict()
Victor Stinner
2017-01-18
1
-70/+5
*
Fix _PyMethodDef_RawFastCallDict() argument parsing
Victor Stinner
2017-01-18
1
-14/+16
*
Optimize methoddescr_call(): avoid temporary PyCFunction
Victor Stinner
2017-01-18
1
-15/+24
*
Remove unused func parameter of _PyStack_UnpackDict()
Victor Stinner
2017-01-18
1
-2/+1
*
_PyStack_UnpackDict() now returns -1 on error
Victor Stinner
2017-01-17
1
-2/+2
[next]