[Python-3000-checkins] r63694 - python/branches/py3k/Include/bytesobject.h

benjamin.peterson python-3000-checkins at python.org
Mon May 26 17:07:14 CEST 2008


Author: benjamin.peterson
Date: Mon May 26 17:07:14 2008
New Revision: 63694

Log:
remove PyBytes_Format from header


Modified:
   python/branches/py3k/Include/bytesobject.h

Modified: python/branches/py3k/Include/bytesobject.h
==============================================================================
--- python/branches/py3k/Include/bytesobject.h	(original)
+++ python/branches/py3k/Include/bytesobject.h	Mon May 26 17:07:14 2008
@@ -58,7 +58,6 @@
 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,


More information about the Python-3000-checkins mailing list