aboutsummaryrefslogtreecommitdiff
path: root/Include/descrobject.h
AgeCommit message (Expand)Author
2022-01-26bpo-35134: Add Include/cpython/descrobject.h (GH-30923)Victor Stinner
2021-02-16bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535)Erlend Egeberg Aasland
2019-07-05bpo-36974: separate vectorcall functions for each calling convention (GH-13781)Jeroen Demeyer
2019-05-30bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)Jeroen Demeyer
2019-05-29bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer
2017-12-15bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka
2017-02-03Issue #29263: LOAD_METHOD support for C methodsINADA Naoki
2016-11-22Issue #28761: The fields name and doc of structures PyMemberDef, PyGetSetDef,Serhiy Storchaka
2016-09-11Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka
2011-12-12Issue #13577: various kinds of descriptors now have a __qualname__ attribute.Antoine Pitrou
2011-09-01make sure to initialize the method wrapper typeBenjamin Peterson
2010-12-03Merge branches/pep-0384.Martin v. Löwis
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2009-07-22Issue #6151: Make PyDescr_COMMON conform to standard C.Alexandre Vassalotti
2009-07-03remove duplicate declartions #6405Benjamin Peterson
2009-04-20Merged revisions 71734,71738-71739 via svnmerge fromBenjamin Peterson
2007-12-19#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes
2007-11-29Added all PyTypeObjects to the appropriate header files.Christian Heimes
2007-07-21Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis
2002-12-09SF 548651: Fix the METH_CLASS implementation.Tim Peters
2002-08-19Make PyDescr_IsData() a macro. It's too simple to be a function.Guido van Rossum
2002-08-12Excise DL_EXPORT from Include.Mark Hammond
2002-03-30Patch #536908: Add missing #include guards/extern "C".Martin v. Löwis
2001-10-22Methods of built-in types now properly check for keyword argumentsGuido van Rossum
2001-10-21Big internal change that should have no external effects: unify theGuido van Rossum
2001-10-03*EXPERIMENTAL* speedup of slot_sq_item. This sped up the followingGuido van Rossum
2001-09-20Add optional docstrings to getset descriptors. Fortunately, there'sGuido van Rossum
2001-09-20Add optional docstrings to member descriptors. For backwardsGuido van Rossum
2001-09-06Rename 'getset' to 'property'.Guido van Rossum
2001-08-23Add new built-in type 'getset' (PyGetSet_Type).Guido van Rossum
2001-08-02Merge of descr-branch back into trunk.Tim Peters