diff options
author | Nicholas Bastin <nick.bastin@gmail.com> | 2004-05-04 19:25:56 (GMT) |
---|---|---|
committer | Nicholas Bastin <nick.bastin@gmail.com> | 2004-05-04 19:25:56 (GMT) |
commit | e9c2ecfb9649ecd75ffc236051c050d510d2588d (patch) | |
tree | 9e5c7db344daba2ae1f9510934bf78644c3304bb /Doc/api | |
parent | 5068c873e6fc1d90218199b66ef821017b0c659d (diff) | |
download | cpython-e9c2ecfb9649ecd75ffc236051c050d510d2588d.zip cpython-e9c2ecfb9649ecd75ffc236051c050d510d2588d.tar.gz cpython-e9c2ecfb9649ecd75ffc236051c050d510d2588d.tar.bz2 |
Removed 'U' from the documentation for Py_BuildValue to bring it in line
with the elimination of 'U' in modsupport.c on 2000/04/28 (replaced
with 'u' and 'u#' per fdrake's comments).
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/utilities.tex | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Doc/api/utilities.tex b/Doc/api/utilities.tex index 318e450..39ca932 100644 --- a/Doc/api/utilities.tex +++ b/Doc/api/utilities.tex @@ -827,9 +827,6 @@ PyArg_ParseTuple(args, "O|O:ref", &object, &callback) \item[\samp{S} (object) {[PyObject *]}] Same as \samp{O}. - \item[\samp{U} (object) {[PyObject *]}] - Same as \samp{O}. - \item[\samp{N} (object) {[PyObject *]}] Same as \samp{O}, except it doesn't increment the reference count on the object. Useful when the object is created by a call to an |