From: Benjamin Peterson Date: Mon, 26 May 2008 15:07:14 +0000 (+0000) Subject: remove PyBytes_Format from header X-Git-Tag: v3.0b1~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27ad091ba0a6ff9a020d71272fb631984209f8b5;p=thirdparty%2FPython%2Fcpython.git remove PyBytes_Format from header --- diff --git a/Include/bytesobject.h b/Include/bytesobject.h index 1c73fdeb8056..529b028c8247 100644 --- a/Include/bytesobject.h +++ b/Include/bytesobject.h @@ -58,7 +58,6 @@ PyAPI_FUNC(PyObject *) PyBytes_Repr(PyObject *, int); PyAPI_FUNC(void) PyBytes_Concat(PyObject **, PyObject *); PyAPI_FUNC(void) PyBytes_ConcatAndDel(PyObject **, PyObject *); PyAPI_FUNC(int) _PyBytes_Resize(PyObject **, Py_ssize_t); -PyAPI_FUNC(PyObject *) PyBytes_Format(PyObject *, PyObject *); PyAPI_FUNC(PyObject *) _PyBytes_FormatLong(PyObject*, int, int, int, char**, int*); PyAPI_FUNC(PyObject *) PyBytes_DecodeEscape(const char *, Py_ssize_t,