aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...Vladimir Matveev2020-11-101-5/+0
* bpo-41756: Export PyGen_Send and wrap it in if-defs (#22677)Vladimir Matveev2020-10-131-0/+2
* bpo-41756: Add PyIter_Send function (#22443)Vladimir Matveev2020-10-091-0/+16
* bpo-41103: Remove old buffer protocol support (#21117)Inada Naoki2020-06-261-47/+0
* bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)Serhiy Storchaka2019-10-301-3/+3
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)Victor Stinner2019-06-171-0/+6
* bpo-33407: Implement Py_DEPRECATED() on MSVC (GH-8980)Zackery Spytz2019-05-281-8/+7
* bpo-35134: Create Include/cpython/abstract.h (GH-10728)Victor Stinner2018-11-261-281/+4
* Clean up after bpo-33738. (GH-7627)Serhiy Storchaka2018-06-111-4/+2
* bpo-33738: Address review comments in GH #7477 (GH-7585)Christian Tismer2018-06-101-1/+1
* bpo-33738: Fix macros which contradict PEP 384 (GH-7477)Christian Tismer2018-06-091-0/+15
* bpo-5945: Improve mappings and sequences C API docs. (GH-7029)Serhiy Storchaka2018-05-221-8/+8
* Fix PyObject_Hash signature in comment (#4905)Andrew Svetlov2017-12-161-1/+1
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-151-8/+8
* Spelling fixes (#2902)Ville Skyttä2017-08-031-1/+1
* bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)Serhiy Storchaka2017-03-301-0/+3
* bpo-29735: Optimize partial_call(): avoid tuple (#516)Victor Stinner2017-03-141-0/+4
* Optimize slots: avoid temporary PyMethodObjectVictor Stinner2017-02-091-0/+6
* Issue #29360: _PyStack_AsDict() doesn't check kwnamesVictor Stinner2017-01-241-6/+9
* Remove unused func parameter of _PyStack_UnpackDict()Victor Stinner2017-01-181-2/+1
* _PyStack_UnpackDict() now returns -1 on errorVictor Stinner2017-01-171-5/+8
* Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-171-2/+2
* Add _PyStack_AsTupleSlice() helperVictor Stinner2017-01-161-0/+6
* call_method() now uses _PyObject_FastCall()Victor Stinner2017-01-111-8/+0
* Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-271-0/+4
|\
| * Issue #29058: All stable API extensions added after Python 3.2 are nowSerhiy Storchaka2016-12-271-0/+4
* | abstract.h: remove long outdated commentVictor Stinner2016-12-191-118/+2
* | Add _PY_FASTCALL_SMALL_STACK constantVictor Stinner2016-12-151-0/+11
* | Issue #28838: Cleanup abstract.hVictor Stinner2016-12-151-621/+423
* | Add _PyObject_VaCallFunctionObjArgs() private functionVictor Stinner2016-12-091-0/+6
* | Issue #28838: Fix weird indentation of abstract.hVictor Stinner2016-12-061-847/+859
* | Uniformize argument names of "call" functionsVictor Stinner2016-12-061-65/+67
* | Fixed misplaced comment.Serhiy Storchaka2016-12-061-6/+6
|\|
| * Fixed misplaced comment.Serhiy Storchaka2016-12-061-6/+6
| |\
| | * Fixed misplaced comment.Serhiy Storchaka2016-12-061-6/+6
* | | Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-051-4/+1
* | | fix _PyObject_CallArg1 compiler warnings (closes #28855)Benjamin Peterson2016-12-011-1/+1
* | | Backed out changeset 7efddbf1aa70Victor Stinner2016-11-301-20/+20
* | | Uniformize argument names of "call" functionsVictor Stinner2016-11-291-20/+20
* | | Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-4/+8
|/ /
* | Issues #25909, #28211: Restored correct documentation of PyMapping_Items,Serhiy Storchaka2016-09-261-7/+7
|\|
| * Issues #25909, #28211: Restored correct documentation of PyMapping_Items,Serhiy Storchaka2016-09-261-7/+7
| * Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* | Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()Victor Stinner2016-09-121-30/+40
* | Revert change f860b7a775c5Victor Stinner2016-09-121-3/+1
* | ssue #27213: Reintroduce checks in _PyStack_AsDict()Victor Stinner2016-09-121-1/+3
* | Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.Serhiy Storchaka2016-09-121-3/+1
* | Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-1/+9
* | Add METH_FASTCALL calling conventionVictor Stinner2016-09-091-0/+16