Update pep-0469 (#895)

Fix #852 by updating line 129 in PEP469
This commit is contained in:
Bharat Raghunathan 2019-02-15 09:46:30 +05:30 committed by Mariatta
parent cccaba9b8e
commit 23e70830db
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ in order to iterate again.
In Python 3, direct iteration over mappings works the same way as it does
in Python 2. There are no method based equivalents - the semantic equivalents
of ``d.itervalues()`` and ``d.iteritems()`` in Python 3 are
``iter(d.values())`` and ``iter(d.iteritems())``.
``iter(d.values())`` and ``iter(d.items())``.
The ``six`` and ``future.utils`` compatibility modules also both provide
``iterkeys()``, ``itervalues()`` and ``iteritems()`` helper functions that