diff options
author | Georg Brandl <georg@python.org> | 2008-05-12 18:05:20 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-12 18:05:20 +0000 |
commit | 6ab3cdbebed7c667dcb2b0aed09daa765bfdab60 (patch) | |
tree | 13525e2620d03bf646983eaf50b405d8f971de21 /Doc/c-api/dict.rst | |
parent | 0912458d2652b85bf3ac2085e8037044201e5633 (diff) | |
download | cpython-6ab3cdbebed7c667dcb2b0aed09daa765bfdab60.tar.gz |
Remove many "versionchanged" items that didn't use the official markup,
but just some text embedded in the docs.
Also remove paragraph about implicit relative imports from tutorial.
Diffstat (limited to 'Doc/c-api/dict.rst')
-rw-r--r-- | Doc/c-api/dict.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index b346d68304..def60d226c 100644 --- a/Doc/c-api/dict.rst +++ b/Doc/c-api/dict.rst @@ -153,9 +153,9 @@ Dictionary Objects ... } - The dictionary *p* should not be mutated during iteration. It is safe (since - Python 2.1) to modify the values of the keys as you iterate over the dictionary, - but only so long as the set of keys does not change. For example:: + The dictionary *p* should not be mutated during iteration. It is safe to + modify the values of the keys as you iterate over the dictionary, but only so + long as the set of keys does not change. For example:: PyObject *key, *value; Py_ssize_t pos = 0; |