diff options
author | Skip Montanaro <skip@pobox.com> | 2002-01-23 10:54:41 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-01-23 10:54:41 (GMT) |
commit | ea3ceaa913b34030f8e0904f1747b0367330d20d (patch) | |
tree | 919d28e8650d0a3dd3fcb155d9d437e7f162f9ac | |
parent | a23bc42ad5ad1b81a7c6342cc93a7a07eb072f48 (diff) | |
download | cpython-ea3ceaa913b34030f8e0904f1747b0367330d20d.zip cpython-ea3ceaa913b34030f8e0904f1747b0367330d20d.tar.gz cpython-ea3ceaa913b34030f8e0904f1747b0367330d20d.tar.bz2 |
PyDict_Next: update doc to indicate that pkey and pvalue return values are
borrowed references.
-rw-r--r-- | Doc/api/concrete.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 5c71b3a..1c20876 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -1779,7 +1779,8 @@ format. dictionary, and false once all pairs have been reported. The parameters \var{pkey} and \var{pvalue} should either point to \ctype{PyObject*} variables that will be filled in with each key and - value, respectively, or may be \NULL. + value, respectively, or may be \NULL. Any references returned through + them are borrowed. For example: |