| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-23602) | Antonio Cuni | 2021-01-06 | 1 | -2/+4 |
|
|
* | bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441) | Serhiy Storchaka | 2020-11-22 | 1 | -4/+4 |
|
|
* | bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec... | Serhiy Storchaka | 2020-11-21 | 1 | -2/+4 |
|
|
* | bpo-41832: Restore note about NULL in PyType_Slot.pfunc (GH-23243) | Hai Shi | 2020-11-14 | 1 | -0/+2 |
|
|
* | bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931) | Hai Shi | 2020-11-10 | 1 | -2/+4 |
|
|
* | bpo-41832: PyType_FromModuleAndSpec() now accepts NULL tp_doc (GH-23123) | Hai Shi | 2020-11-06 | 1 | -2/+4 |
|
|
* | Note the buffer slots can be set with PyType_Spec with the unlimited API. (GH... | Benjamin Peterson | 2020-09-02 | 1 | -1/+10 |
|
|
* | bpo-38787: Clarify docs for PyType_GetModule and warn against common mistake ... | Petr Viktorin | 2020-08-27 | 1 | -1/+11 |
|
|
* | bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ... | Hai Shi | 2020-05-11 | 1 | -0/+1 |
|
|
* | bpo-38787: C API for module state access from extension methods (PEP 573) (GH... | Petr Viktorin | 2020-05-07 | 1 | -1/+35 |
|
|
* | bpo-39542: Convert PyType_Check() to static inline function (GH-18364) | Victor Stinner | 2020-02-05 | 1 | -6/+6 |
|
|
* | bpo-36974: expand call protocol documentation (GH-13844) | Jeroen Demeyer | 2019-11-12 | 1 | -0/+1 |
|
|
* | bpo-38600: NULL -> ``NULL``. (GH-17001) | Serhiy Storchaka | 2019-10-30 | 1 | -1/+1 |
|
|
* | bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950) | Serhiy Storchaka | 2019-10-30 | 1 | -5/+5 |
|
|
* | bpo-38206: Clarify tp_dealloc requirements for heap allocated types. (GH-16248) | Ammar Askar | 2019-09-27 | 1 | -1/+2 |
|
|
* | bpo-38140: Document offsets in PyMemberDef (GH-16354) | Petr Viktorin | 2019-09-25 | 1 | -1/+4 |
|
|
* | bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076) | Eddie Elizondo | 2019-09-19 | 1 | -2/+1 |
|
|
* | bpo38158: Removing nonexistant member "doc" from PyType_Spec documentation (G... | t k | 2019-09-15 | 1 | -4/+0 |
|
|
* | bpo-34626: Document creating heap types from the C-API (GH-9154) | Petr Viktorin | 2019-05-24 | 1 | -12/+103 |
|
|
* | Doc: Replace the deprecated highlightlang directive by highlight. (#13377) | Stéphane Wirtel | 2019-05-17 | 1 | -1/+1 |
|
|
* | bpo-16086: Fix PyType_GetFlags() documentation (GH-10758) | Eddie Elizondo | 2018-11-29 | 1 | -1/+4 |
|
|
* | Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and mention... | Georg Brandl | 2014-10-06 | 1 | -1/+1 |
|
|
* | Closes #22507: document that PyType_IsSubtype does not call __subclasscheck__. | Georg Brandl | 2014-10-06 | 1 | -0/+6 |
|
|
* | Tweaks to What's New and some referenced docs | Nick Coghlan | 2014-02-09 | 1 | -1/+1 |
|
|
* | Issue #17162: Add PyType_GetSlot. | Martin v. Löwis | 2014-02-04 | 1 | -0/+10 |
|
|
* | Issue #18589: fix hyperlinking of type slots (tp_*) | Antoine Pitrou | 2013-08-01 | 1 | -5/+5 |
|
|
* | Fix whitespace. | Martin v. Löwis | 2012-06-23 | 1 | -1/+1 |
|
|
* | Issue #15146: Add PyType_FromSpecWithBases. Patch by Robin Schreiber. | Martin v. Löwis | 2012-06-23 | 1 | -0/+12 |
|
|
* | Issue #14090: fix some minor C API problems in default branch (3.3) | Eli Bendersky | 2012-06-03 | 1 | -2/+2 |
|
|
* | Issue #14424: Document PyType_GenericAlloc, and fix the documentation of PyTy... | Eli Bendersky | 2012-06-03 | 1 | -4/+5 |
|
|
* | Some corrections for the Doc/extending documentation. Closes #14129 | Eli Bendersky | 2012-02-27 | 1 | -1/+2 |
|
|
* | add generic implementation of a __dict__ descriptor for C types | Benjamin Peterson | 2012-02-20 | 1 | -1/+0 |
|
|
* | Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check | Martin v. Löwis | 2011-02-05 | 1 | -0/+8 |
|
|
* | #9204: remove mentions of removed types in the types module. | Georg Brandl | 2010-10-17 | 1 | -4/+2 |
|
|
* | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 1 | -12/+12 |
|
|
* | Merged revisions 74074,74077,74111,74188,74192-74193,74200,74252-74253,74258-... | Alexandre Vassalotti | 2009-07-29 | 1 | -1/+1 |
|
|
* | After discussing some more with Georg, do no migrate versionchanged:: 2.5 to | Jeroen Ruigrok van der Werven | 2009-04-27 | 1 | -4/+0 |
|
|
* | Merged revisions 71898-71900,71910,71914-71919 via svnmerge from | Jeroen Ruigrok van der Werven | 2009-04-26 | 1 | -0/+4 |
|
|
* | Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,... | Georg Brandl | 2008-06-10 | 1 | -1/+8 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-16 | 1 | -2/+0 |
|
|
* | Merged revisions 60364-60378 via svnmerge from | Christian Heimes | 2008-01-27 | 1 | -0/+7 |
|
|
* | Split C API docs in Py3k branch. | Georg Brandl | 2008-01-20 | 1 | -0/+68 |
|
|