summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-25 14:28:02 (GMT)
committerJeroen Ruigrok van der Werven <asmodai@in-nomine.org>2009-04-25 14:28:02 (GMT)
commit6f1d5431331e8b9d82e05dcc9245424b49c48d54 (patch)
tree1201d42cd770e55771dae113f05611a6bbcd4494
parent325a997efbc6bf4356b94a2cf888cdbf792f44ae (diff)
downloadcpython-6f1d5431331e8b9d82e05dcc9245424b49c48d54.zip
cpython-6f1d5431331e8b9d82e05dcc9245424b49c48d54.tar.gz
cpython-6f1d5431331e8b9d82e05dcc9245424b49c48d54.tar.bz2
Reformat paragraph.
-rw-r--r--Doc/c-api/dict.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst
index 6f6705b..1dbeffa 100644
--- a/Doc/c-api/dict.rst
+++ b/Doc/c-api/dict.rst
@@ -146,16 +146,16 @@ Dictionary Objects
.. cfunction:: int PyDict_Next(PyObject *p, Py_ssize_t *ppos, PyObject **pkey, PyObject **pvalue)
- Iterate over all key-value pairs in the dictionary *p*. The :ctype:`Py_ssize_t`
- referred to by *ppos* must be initialized to ``0`` prior to the first call
- to this function to start the iteration; the function returns true for each
- pair in the dictionary, and false once all pairs have been reported. The
- parameters *pkey* and *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. *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.
+ Iterate over all key-value pairs in the dictionary *p*. The
+ :ctype:`Py_ssize_t` referred to by *ppos* must be initialized to ``0``
+ prior to the first call to this function to start the iteration; the
+ function returns true for each pair in the dictionary, and false once all
+ pairs have been reported. The parameters *pkey* and *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. *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::