summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-05-26 15:07:14 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-05-26 15:07:14 (GMT)
commit27ad091ba0a6ff9a020d71272fb631984209f8b5 (patch)
treebf5a5ebfdbcc18be5686b9f4d94f0234533ff9b7 /Include
parentd026b93971a532b17e38fe751afb2b4b4d00b7ac (diff)
downloadcpython-27ad091ba0a6ff9a020d71272fb631984209f8b5.zip
cpython-27ad091ba0a6ff9a020d71272fb631984209f8b5.tar.gz
cpython-27ad091ba0a6ff9a020d71272fb631984209f8b5.tar.bz2
remove PyBytes_Format from header
Diffstat (limited to 'Include')
-rw-r--r--Include/bytesobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/bytesobject.h b/Include/bytesobject.h
index 1c73fde..529b028 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,