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
/
Objects
/
call.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Use static inline function Py_EnterRecursiveCall() (#91988)
Victor Stinner
2022-05-04
1
-4
/
+4
*
bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)
Christian Heimes
2022-03-30
1
-1
/
+2
*
bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)
Inada Naoki
2022-03-02
1
-17
/
+2
*
bpo-45459: C API uses type names rather than structure names (GH-31528)
Victor Stinner
2022-02-24
1
-2
/
+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-1
/
+35
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-3
/
+3
*
bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)
Victor Stinner
2021-10-14
1
-5
/
+42
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-12
1
-4
/
+4
*
bpo-45439: _PyObject_Call() only checks tp_vectorcall_offset once (GH-28890)
Victor Stinner
2021-10-12
1
-23
/
+36
*
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
Mark Shannon
2021-02-01
1
-70
/
+7
*
bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_Co...
Mark Shannon
2021-01-29
1
-26
/
+7
*
bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)
Victor Stinner
2021-01-27
1
-6
/
+30
*
bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999)
Petr Viktorin
2020-12-29
1
-1
/
+2
*
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056)
Victor Stinner
2020-06-22
1
-7
/
+7
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2
/
+2
*
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner
2020-03-25
1
-2
/
+4
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-7
/
+7
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-2
/
+2
*
bpo-38644: Add _PyEval_EvalCode() (GH-17183)
Victor Stinner
2019-11-16
1
-26
/
+29
*
bpo-38644: Add _PyObject_Call() (GH-17089)
Victor Stinner
2019-11-14
1
-97
/
+125
*
bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131)
Victor Stinner
2019-11-14
1
-1
/
+2
*
bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052)
Victor Stinner
2019-11-08
1
-5
/
+7
*
bpo-38733: PyErr_Occurred() caller must hold the GIL (GH-17080)
Victor Stinner
2019-11-07
1
-4
/
+2
*
bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)
Victor Stinner
2019-11-05
1
-34
/
+47
*
bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)
Victor Stinner
2019-11-05
1
-19
/
+23
*
bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684)
Jeroen Demeyer
2019-09-11
1
-62
/
+7
*
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-12
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-21
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
[next]