summaryrefslogtreecommitdiff
path: root/Doc/c-api/utilities.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-08-31 16:33:38 +0000
committerGeorg Brandl <georg@python.org>2007-08-31 16:33:38 +0000
commit8fdc492857fac72cd772a570530203f15d55b16f (patch)
tree95fb5befdedee4988c2b60bac6c72a71c15973cf /Doc/c-api/utilities.rst
parent2fb40170a09d359263f9031c5c40292bef424af1 (diff)
downloadcpython-8fdc492857fac72cd772a570530203f15d55b16f.tar.gz
- document bytes()
- throw out many mentions of "old-style/new-style" - add memoryview() though I somebody has to fill in the details - throw out str.decode() - throw out classobj and instanceobj
Diffstat (limited to 'Doc/c-api/utilities.rst')
-rw-r--r--Doc/c-api/utilities.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/c-api/utilities.rst b/Doc/c-api/utilities.rst
index 8999316184..71e9560017 100644
--- a/Doc/c-api/utilities.rst
+++ b/Doc/c-api/utilities.rst
@@ -750,6 +750,7 @@ return true, otherwise they return false and raise an appropriate exception.
va_list rather than a variable number of arguments.
+.. XXX deprecated, will be removed
.. cfunction:: int PyArg_Parse(PyObject *args, const char *format, ...)
Function used to deconstruct the argument lists of "old-style" functions ---