From: Benjamin Peterson Date: Mon, 12 Jan 2009 00:28:16 +0000 (+0000) Subject: remove docs for PyBytes_Format #4917 X-Git-Tag: v3.1a1~523 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce36962d12b78ede24b71d5ac1075109f5e23787;p=thirdparty%2FPython%2Fcpython.git remove docs for PyBytes_Format #4917 --- diff --git a/Doc/c-api/bytes.rst b/Doc/c-api/bytes.rst index c9a114a9382a..b66047b021a9 100644 --- a/Doc/c-api/bytes.rst +++ b/Doc/c-api/bytes.rst @@ -192,9 +192,3 @@ called with a non-bytes parameter. reallocation fails, the original bytes object at *\*bytes* is deallocated, *\*bytes* is set to *NULL*, a memory exception is set, and ``-1`` is returned. - - -.. cfunction:: PyObject* PyBytes_Format(PyObject *format, PyObject *args) - - Return a new bytes object from *format* and *args*. Analogous to ``format % - args``. The *args* argument must be a tuple.