diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-26 16:46:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-26 16:46:47 (GMT) |
commit | c15a07333e712e682036d9ecb7230d25ccb1a85f (patch) | |
tree | 52eee04b10bc95047d25c9dd6b82ec9e48efeb97 /Doc | |
parent | a786b026c9992cee195b7a550bab2c70c50f874f (diff) | |
download | cpython-c15a07333e712e682036d9ecb7230d25ccb1a85f.zip cpython-c15a07333e712e682036d9ecb7230d25ccb1a85f.tar.gz cpython-c15a07333e712e682036d9ecb7230d25ccb1a85f.tar.bz2 |
make bytes(o) respect __bytes__ #2415
This adds two new C-API functions: PyObject_Bytes and PyBytes_FromObject.
Reviewer: Barry
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/bytes.rst | 6 | ||||
-rw-r--r-- | Doc/c-api/object.rst | 8 |
2 files changed, 14 insertions, 0 deletions
diff --git a/Doc/c-api/bytes.rst b/Doc/c-api/bytes.rst index 916e20e..c9a114a 100644 --- a/Doc/c-api/bytes.rst +++ b/Doc/c-api/bytes.rst @@ -118,6 +118,12 @@ called with a non-bytes parameter. arguments. +.. cfunction:: PyObject* PyBytes_FromObject(PyObject *o) + + Return the bytes representation of object *o* that implements the buffer + protocol. + + .. cfunction:: Py_ssize_t PyBytes_Size(PyObject *o) Return the length of the bytes in bytes object *o*. diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index 193ab95..7b9682c 100644 --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -139,6 +139,14 @@ Object Protocol Python expression ``str(o)``. Called by the :func:`str` built-in function and, therefore, by the :func:`print` function. +.. cfunction:: PyObject* PyObject_Bytes(PyObject *o) + + .. index:: builtin: bytes + + Compute a bytes representation of object *o*. *NULL* is returned on failure + and a bytes object on success. This is equivalent to the Python expression + ``bytes(o)``. + .. cfunction:: int PyObject_IsInstance(PyObject *inst, PyObject *cls) |