diff options
author | Raymond Hettinger <python@rcn.com> | 2003-12-13 19:48:41 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-12-13 19:48:41 (GMT) |
commit | 5469324cdee92fd9454e42da737d12df5adb79ee (patch) | |
tree | e82f885db3d31d4f94b8e89a4d615555c1a059f0 /Doc/api | |
parent | 438e02dfc838c128e596f9e3e329a4abdd40ab6e (diff) | |
download | cpython-5469324cdee92fd9454e42da737d12df5adb79ee.zip cpython-5469324cdee92fd9454e42da737d12df5adb79ee.tar.gz cpython-5469324cdee92fd9454e42da737d12df5adb79ee.tar.bz2 |
Note that \var{ppos} values are not consecutive and should not be altered.
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/concrete.tex | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 67852db..c233ed4 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -1896,7 +1896,9 @@ format. 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. Any references returned through - them are borrowed. + them are borrowed. \var{ppos} should not be altered during iteration. + Its value represents offsets within the internal dictionary structure, + and since the structure is sparse, the offsets are not consecutive. For example: |