diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2015-01-24 04:05:18 (GMT) |
---|---|---|
committer | Ethan Furman <ethan@stoneleaf.us> | 2015-01-24 04:05:18 (GMT) |
commit | b95b56150fc3e7834783b54acdddeaed4fe44e27 (patch) | |
tree | c1994946e84b457841024402b50f8a9640211cb4 /Include/bytesobject.h | |
parent | 8861502e0746465c4124548681f05969c08f4cae (diff) | |
download | cpython-b95b56150fc3e7834783b54acdddeaed4fe44e27.zip cpython-b95b56150fc3e7834783b54acdddeaed4fe44e27.tar.gz cpython-b95b56150fc3e7834783b54acdddeaed4fe44e27.tar.bz2 |
Issue20284: Implement PEP461
Diffstat (limited to 'Include/bytesobject.h')
-rw-r--r-- | Include/bytesobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/bytesobject.h b/Include/bytesobject.h index 0ee8d36..e379bac 100644 --- a/Include/bytesobject.h +++ b/Include/bytesobject.h @@ -62,6 +62,7 @@ PyAPI_FUNC(void) PyBytes_Concat(PyObject **, PyObject *); PyAPI_FUNC(void) PyBytes_ConcatAndDel(PyObject **, PyObject *); #ifndef Py_LIMITED_API PyAPI_FUNC(int) _PyBytes_Resize(PyObject **, Py_ssize_t); +PyAPI_FUNC(PyObject *) _PyBytes_Format(PyObject *, PyObject *); #endif PyAPI_FUNC(PyObject *) PyBytes_DecodeEscape(const char *, Py_ssize_t, const char *, Py_ssize_t, |