diff options
author | Georg Brandl <georg@python.org> | 2007-08-31 16:33:38 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-31 16:33:38 +0000 |
commit | 8fdc492857fac72cd772a570530203f15d55b16f (patch) | |
tree | 95fb5befdedee4988c2b60bac6c72a71c15973cf /Doc/c-api/utilities.rst | |
parent | 2fb40170a09d359263f9031c5c40292bef424af1 (diff) | |
download | cpython-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.rst | 1 |
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 --- |