Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-45855: document that `no_block` has no use anymore in PyCapsule_Import ↵ | Georg Brandl | 2021-12-12 | 1 | -3/+4 |
| | | | | (#29665) | ||||
* | bpo-42528: Improve the docs of most Py*_Check{,Exact} API calls (GH-23602) | Antonio Cuni | 2021-01-06 | 1 | -1/+2 |
| | | | | | I think that none of these API calls can fail, but only few of them are documented as such. Add the sentence "This function always succeeds" (which is the same already used e.g. by PyNumber_Check) to all of them. | ||||
* | bpo-40204, doc: Fix syntax of C variables (GH-21846) | Victor Stinner | 2020-08-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | For example, fix the following Sphinx 3 errors: Doc/c-api/buffer.rst:102: WARNING: Error in declarator or parameters Invalid C declaration: Expected identifier in nested name. [error at 5] void \*obj -----^ Doc/c-api/arg.rst:130: WARNING: Unparseable C cross-reference: 'PyObject*' Invalid C declaration: Expected end of definition. [error at 8] PyObject* --------^ The modified documentation is compatible with Sphinx 2 and Sphinx 3. | ||||
* | bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950) | Serhiy Storchaka | 2019-10-30 | 1 | -19/+19 |
| | | | | Replace all *NULL* with ``NULL``. | ||||
* | Doc: Replace the deprecated highlightlang directive by highlight. (#13377) | Stéphane Wirtel | 2019-05-17 | 1 | -1/+1 |
| | | | | highlightlang is deprecated since April 2018 in Sphinx. See https://github.com/sphinx-doc/sphinx/pull/4845 | ||||
* | Fix C API docs: PyCapsule_Import always set an exception on failure. (GH-6967) | Serhiy Storchaka | 2018-05-18 | 1 | -2/+9 |
| | |||||
* | Issue #28496: Mark up constants 0, 1 and -1 that denote return values or | Serhiy Storchaka | 2016-10-27 | 1 | -5/+5 |
| | | | | special input values as literal text. | ||||
* | Migrate to Sphinx 1.0 C language constructs. | Georg Brandl | 2010-10-06 | 1 | -34/+34 |
| | |||||
* | #5946: fix speling. | Georg Brandl | 2009-05-06 | 1 | -3/+3 |
| | |||||
* | Small style edits. | Georg Brandl | 2009-05-05 | 1 | -18/+16 |
| | |||||
* | edits | Benjamin Peterson | 2009-05-05 | 1 | -74/+58 |
| | |||||
* | add a replacement API for PyCObject, PyCapsule #5630 | Benjamin Peterson | 2009-05-05 | 1 | -0/+168 |
All stdlib modules with C-APIs now use this. Patch by Larry Hastings |