| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-87961: Remove outdated notes from functions that aren't in the Limited API... | Miss Islington (bot) | 2022-06-10 | 1 | -2/+0 |
|
|
* | gh-91768: C API no longer use "const PyObject*" type (#91769) | Victor Stinner | 2022-04-21 | 1 | -7/+12 |
|
|
* | More minor fixes to C API docs (GH-31525) | Jelle Zijlstra | 2022-04-02 | 1 | -1/+1 |
|
|
* | bpo-47164: Add _PyCFunction_CAST() macro (GH-32192) | Victor Stinner | 2022-03-31 | 1 | -0/+3 |
|
|
* | bpo-39573: Py_TYPE becomes a static inline function (GH-28128) | Victor Stinner | 2021-09-08 | 1 | -3/+10 |
|
|
* | Document PyMember_GetOne and PyMember_SetOne (GH-27555) | Ken Jin | 2021-08-02 | 1 | -0/+15 |
|
|
* | bpo-44348: Revert "bpo-39573: Py_TYPE becomes a static inline function (GH-26... | Pablo Galindo | 2021-06-08 | 1 | -10/+3 |
|
|
* | bpo-39573: Py_TYPE becomes a static inline function (GH-26493) | Victor Stinner | 2021-06-03 | 1 | -3/+10 |
|
|
* | bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227) | Victor Stinner | 2021-04-10 | 1 | -0/+31 |
|
|
* | bpo-39573: Convert Py_TYPE() and Py_SIZE() back to macros (GH-23366) | Victor Stinner | 2020-11-18 | 1 | -6/+2 |
|
|
* | bpo-42171: Add PEP573-related items to the limited API (GH-23009) | Petr Viktorin | 2020-11-10 | 1 | -2/+4 |
|
|
* | bpo-42294: Add borrowed/strong reference to doc glossary (GH-23206) | Victor Stinner | 2020-11-09 | 1 | -1/+1 |
|
|
* | bpo-40204, doc: Fix syntax of C variables (GH-21846) | Victor Stinner | 2020-08-13 | 1 | -9/+9 |
|
|
* | bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429) | Victor Stinner | 2020-05-27 | 1 | -9/+10 |
|
|
* | bpo-39573: Convert Py_TYPE() to a static inline function (GH-20290) | Dong-hee Na | 2020-05-25 | 1 | -4/+7 |
|
|
* | bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset ... | Hai Shi | 2020-05-11 | 1 | -3/+5 |
|
|
* | bpo-38787: Update structures.rst docs (PEP 573) (GH-19980) | Hai Shi | 2020-05-07 | 1 | -2/+2 |
|
|
* | bpo-38787: C API for module state access from extension methods (PEP 573) (GH... | Petr Viktorin | 2020-05-07 | 1 | -3/+47 |
|
|
* | bpo-39573: Add Py_IS_TYPE() function (GH-18488) | Dong-hee Na | 2020-02-13 | 1 | -0/+8 |
|
|
* | bpo-39573: Fix bad copy-paste in Py_SET_SIZE (GH-18496) | Brandt Bucher | 2020-02-13 | 1 | -1/+1 |
|
|
* | bpo-39573: Add Py_SET_SIZE() function (GH-18400) | Victor Stinner | 2020-02-07 | 1 | -0/+7 |
|
|
* | bpo-39573: Add Py_SET_TYPE() function (GH-18394) | Victor Stinner | 2020-02-07 | 1 | -0/+7 |
|
|
* | bpo-39573: Add Py_SET_REFCNT() function (GH-18389) | Victor Stinner | 2020-02-07 | 1 | -0/+7 |
|
|
* | bpo-39136: Fixed typos (GH-17720) | Gurupad Hegde | 2019-12-28 | 1 | -1/+1 |
|
|
* | bpo-36974: expand call protocol documentation (GH-13844) | Jeroen Demeyer | 2019-11-12 | 1 | -1/+2 |
|
|
* | bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950) | Serhiy Storchaka | 2019-10-30 | 1 | -10/+10 |
|
|
* | bpo-38140: Document offsets in PyMemberDef (GH-16354) | Petr Viktorin | 2019-09-25 | 1 | -0/+13 |
|
|
* | bpo-36971: add subsections in C API "Common Object Structures" page (#13446) | Jeroen Demeyer | 2019-09-10 | 1 | -0/+10 |
|
|
* | bpo-37540: vectorcall: keyword names must be strings (GH-14682) | Jeroen Demeyer | 2019-08-16 | 1 | -0/+1 |
|
|
* | bpo-28805: document METH_FASTCALL (GH-14079) | Jeroen Demeyer | 2019-06-16 | 1 | -12/+51 |
|
|
* | Doc: Replace the deprecated highlightlang directive by highlight. (#13377) | Stéphane Wirtel | 2019-05-17 | 1 | -1/+1 |
|
|
* | bpo-25438: document what codec PyMemberDef T_STRING decodes the char * as (GH... | Windson yang | 2018-11-17 | 1 | -1/+2 |
|
|
* | bpo-29916: Include PyGetSetDef in C API extension documentation. (#831) | Michael Seifert | 2017-09-15 | 1 | -0/+40 |
|
|
* | bpo-29918: Add missed "const" modifiers in C API documentation. (#846) | Serhiy Storchaka | 2017-03-30 | 1 | -34/+34 |
|
|
* | bpo-29917: DOC: Remove link from PyMethodDef (#890) | csabella | 2017-03-30 | 1 | -2/+2 |
|
|
* | Issue #15657: METH_KEYWORDS cannot be used alone in Python 3 | Martin Panter | 2017-01-11 | 1 | -1/+1 |
|
|
* | Issue #28496: Mark up constants 0, 1 and -1 that denote return values or | Serhiy Storchaka | 2016-10-27 | 1 | -1/+1 |
|
|
* | Issue #15657: Delete incorrect statement from PyMethodDef documentation | Berker Peksag | 2016-06-12 | 1 | -3/+2 |
|
|
* | Fix usage of the default role. | Zachary Ware | 2015-07-07 | 1 | -3/+4 |
|
|
* | Fix suspicious markup | Zachary Ware | 2015-07-07 | 1 | -1/+1 |
|
|
* | issue9014: Include more formatting on :c:type:`PyObject` etc. | Gregory P. Smith | 2015-04-14 | 1 | -3/+3 |
|
|
* | issue9014: Properly document PyObject_HEAD and friends post-PEP-3123. | Gregory P. Smith | 2015-04-14 | 1 | -29/+41 |
|
|
* | fix instances of consecutive articles (closes #23221) | Benjamin Peterson | 2015-01-13 | 1 | -1/+1 |
|
|
* | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 1 | -46/+46 |
|
|
* | Merged revisions 77271 via svnmerge from | Ezio Melotti | 2010-01-03 | 1 | -1/+1 |
|
|
* | Merged revisions 77157 via svnmerge from | Benjamin Peterson | 2009-12-30 | 1 | -1/+4 |
|
|
* | #6421: The self argument of module-level PyCFunctions is now a reference to t... | Georg Brandl | 2009-07-11 | 1 | -9/+7 |
|
|
* | Merged revisions 71874,71882,71890 via svnmerge from | Jeroen Ruigrok van der Werven | 2009-04-26 | 1 | -1/+18 |
|
|
* | Merged revisions 71873 via svnmerge from | Jeroen Ruigrok van der Werven | 2009-04-26 | 1 | -49/+54 |
|
|
* | Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-... | Benjamin Peterson | 2009-04-05 | 1 | -1/+1 |
|
|