annotate CSP2/CSP2_env/env-d9b9114564458d9d-741b3de822f2aaca6c6caa4325c4afce/include/python3.8/picklebufobject.h @ 69:33d812a61356

planemo upload commit 2e9511a184a1ca667c7be0c6321a36dc4e3d116d
author jpayne
date Tue, 18 Mar 2025 17:55:14 -0400
parents
children
rev   line source
jpayne@69 1 /* PickleBuffer object. This is built-in for ease of use from third-party
jpayne@69 2 * C extensions.
jpayne@69 3 */
jpayne@69 4
jpayne@69 5 #ifndef Py_PICKLEBUFOBJECT_H
jpayne@69 6 #define Py_PICKLEBUFOBJECT_H
jpayne@69 7 #ifdef __cplusplus
jpayne@69 8 extern "C" {
jpayne@69 9 #endif
jpayne@69 10
jpayne@69 11 #ifndef Py_LIMITED_API
jpayne@69 12
jpayne@69 13 PyAPI_DATA(PyTypeObject) PyPickleBuffer_Type;
jpayne@69 14
jpayne@69 15 #define PyPickleBuffer_Check(op) (Py_TYPE(op) == &PyPickleBuffer_Type)
jpayne@69 16
jpayne@69 17 /* Create a PickleBuffer redirecting to the given buffer-enabled object */
jpayne@69 18 PyAPI_FUNC(PyObject *) PyPickleBuffer_FromObject(PyObject *);
jpayne@69 19 /* Get the PickleBuffer's underlying view to the original object
jpayne@69 20 * (NULL if released)
jpayne@69 21 */
jpayne@69 22 PyAPI_FUNC(const Py_buffer *) PyPickleBuffer_GetBuffer(PyObject *);
jpayne@69 23 /* Release the PickleBuffer. Returns 0 on success, -1 on error. */
jpayne@69 24 PyAPI_FUNC(int) PyPickleBuffer_Release(PyObject *);
jpayne@69 25
jpayne@69 26 #endif /* !Py_LIMITED_API */
jpayne@69 27
jpayne@69 28 #ifdef __cplusplus
jpayne@69 29 }
jpayne@69 30 #endif
jpayne@69 31 #endif /* !Py_PICKLEBUFOBJECT_H */