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
/
Include
/
cpython
/
abstract.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)
Inada Naoki
2023-05-31
1
-9/+0
*
gh-98586: Add vector call APIs to the Limited API (GH-98587)
Wenzel Jakob
2022-10-27
1
-13/+0
*
gh-93274: Expose receiving vectorcall in the Limited API (GH-95717)
Petr Viktorin
2022-08-08
1
-5/+5
*
gh-87347: Add parenthesis around macro arguments (#93915)
Victor Stinner
2022-06-20
1
-1/+1
*
gh-92781: Avoid mixing declarations and code in C API (#92783)
Victor Stinner
2022-05-15
1
-4/+2
*
gh-91321: Add _Py_NULL macro (#92253)
Victor Stinner
2022-05-03
1
-9/+9
*
gh-92135: Rename _Py_reinterpret_cast() to _Py_CAST() (#92230)
Victor Stinner
2022-05-03
1
-1/+1
*
gh-91320: Add _Py_reinterpret_cast() macro (#91959)
Victor Stinner
2022-04-27
1
-1/+2
*
bpo-45459: C API uses type names rather than structure names (GH-31528)
Victor Stinner
2022-02-24
1
-1/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-0/+4
*
bpo-45459: Add Py_buffer to limited API (GH-29991)
Christian Heimes
2022-02-02
1
-68/+0
*
bpo-46140: take more Py_buffer arguments as const * (GH-30217)
David Hewitt
2021-12-22
1
-3/+3
*
bpo-45439: Move _PyObject_VectorcallTstate() to pycore_call.h (GH-28893)
Victor Stinner
2021-10-14
1
-93/+12
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-9/+0
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-1/+1
*
bpo-45439: _PyObject_Call() only checks tp_vectorcall_offset once (GH-28890)
Victor Stinner
2021-10-11
1
-0/+1
*
bpo-40522: Replace PyThreadState_GET() with PyThreadState_Get() (GH-24575)
Victor Stinner
2021-02-19
1
-4/+4
*
bpo-40170: Always define PyIter_Check() as a function (GH-24548)
Erlend Egeberg Aasland
2021-02-16
1
-6/+0
*
bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352)
Victor Stinner
2021-01-27
1
-1/+1
*
bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999)
Petr Viktorin
2020-12-29
1
-3/+3
*
bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18...
Skip Montanaro
2020-06-01
1
-9/+1
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-0/+3
*
bpo-40170: Remove PyIndex_Check() macro (GH-19428)
Victor Stinner
2020-04-08
1
-6/+0
*
bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376)
Victor Stinner
2020-04-07
1
-3/+1
*
Make cpython/abstract.h compatible with C90 (#18481)
Peter Eisentraut
2020-03-14
1
-11/+24
*
bpo-35370: Add _PyEval_SetTrace() function (GH-18975)
Victor Stinner
2020-03-13
1
-1/+7
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-3/+3
*
bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391)
Victor Stinner
2020-02-07
1
-6/+6
*
bpo-39245: Make Vectorcall C API public (GH-17893)
Petr Viktorin
2020-02-06
1
-14/+23
*
bpo-38644: Add _PyObject_Call() (GH-17089)
Victor Stinner
2019-11-14
1
-10/+7
*
bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052)
Victor Stinner
2019-11-08
1
-4/+14
*
bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)
Victor Stinner
2019-11-05
1
-4/+8
*
Unmark files as executable that can't actually be executed. (GH-15353)
Greg Price
2019-08-21
1
-0/+0
*
bpo-15913: Implement PyBuffer_SizeFromFormat() (GH-13873)
Joannah Nanjekye
2019-08-20
1
-1/+1
*
bpo-37540: vectorcall: keyword names must be strings (GH-14682)
Jeroen Demeyer
2019-08-16
1
-2/+1
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-0/+18
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-0/+14
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-0/+12
*
bpo-36904: Optimize _PyStack_UnpackDict (GH-14517)
Jeroen Demeyer
2019-07-02
1
-18/+0
*
bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)
Jeroen Demeyer
2019-06-28
1
-0/+16
*
bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)
Victor Stinner
2019-06-17
1
-1/+3
*
bpo-37231: remove _PyObject_FastCall_Prepend (GH-14153)
Jeroen Demeyer
2019-06-17
1
-6/+0
*
bpo-36974: remove _PyObject_HasFastCall (GH-13460)
Jeroen Demeyer
2019-05-30
1
-4/+0
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
1
-34/+83
*
Fix typo in _PyObject_FastCallDict documentation (GH-12383)
RĂ©mi Lapeyre
2019-03-18
1
-1/+1
*
bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032)
Sergey Fedoseev
2019-02-25
1
-10/+0
*
bpo-35134: Create Include/cpython/abstract.h (GH-10728)
Victor Stinner
2018-11-26
1
-0/+281