summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-01-12 00:28:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-01-12 00:28:16 (GMT)
commitce36962d12b78ede24b71d5ac1075109f5e23787 (patch)
tree0fefef0b08bb8a34ac14900ab0d57e08a409f274
parentd6e8de179758bcb7a68a694b9b6086d02bf22c3e (diff)
downloadcpython-ce36962d12b78ede24b71d5ac1075109f5e23787.zip
cpython-ce36962d12b78ede24b71d5ac1075109f5e23787.tar.gz
cpython-ce36962d12b78ede24b71d5ac1075109f5e23787.tar.bz2
remove docs for PyBytes_Format #4917
-rw-r--r--Doc/c-api/bytes.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/c-api/bytes.rst b/Doc/c-api/bytes.rst
index c9a114a..b66047b 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.