Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-108240: Add pycore_capsule.h internal header file (#108596) | Victor Stinner | 2023-08-29 | 1 | -5/+0 |
| | | | | Move _PyCapsule_SetTraverse() definition to a new internal header file: pycore_capsule.h. | ||||
* | gh-108240: Add _PyCapsule_SetTraverse() internal function (#108339) | Victor Stinner | 2023-08-23 | 1 | -0/+4 |
| | | | | | The _socket extension uses _PyCapsule_SetTraverse() to visit and clear the socket type in the garbage collector. So the _socket.socket type can be cleared in some corner cases when it wasn't possible before. | ||||
* | gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815) | Victor Stinner | 2022-06-16 | 1 | -1/+1 |
| | |||||
* | bpo-39573: Add Py_IS_TYPE() function (GH-18488) | Dong-hee Na | 2020-02-13 | 1 | -1/+1 |
| | | | Co-Author: Neil Schemenauer <nas-github@arctrix.com> | ||||
* | Issue #3080: document encoding used by import functions | Victor Stinner | 2011-02-22 | 1 | -1/+3 |
| | |||||
* | Remove trailing whitespace. | Georg Brandl | 2009-05-17 | 1 | -3/+3 |
| | |||||
* | add a replacement API for PyCObject, PyCapsule #5630 | Benjamin Peterson | 2009-05-05 | 1 | -0/+57 |
All stdlib modules with C-APIs now use this. Patch by Larry Hastings |