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 /Include/object.h | |
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 'Include/object.h')
-rw-r--r-- | Include/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/object.h b/Include/object.h index 372eada..60584a0 100644 --- a/Include/object.h +++ b/Include/object.h @@ -423,6 +423,7 @@ PyAPI_FUNC(void) _PyObject_Dump(PyObject *); PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *); PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *); PyAPI_FUNC(PyObject *) PyObject_ASCII(PyObject *); +PyAPI_FUNC(PyObject *) PyObject_Bytes(PyObject *); PyAPI_FUNC(int) PyObject_Compare(PyObject *, PyObject *); PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int); PyAPI_FUNC(int) PyObject_RichCompareBool(PyObject *, PyObject *, int); |