summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/dev_guide/testing/sanity/no-dict-itervalues.rst
blob: 979450e418d3f4020ea85371d6578408233c262c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
no-dict-itervalues
==================

The ``dict.itervalues`` method has been removed in Python 3. There are two recommended alternatives:

.. code-block:: python

    for VALUE in DICT.values():
       pass

.. code-block:: python

    from ansible.module_utils.six import itervalues

    for VALUE in itervalues(DICT):
        pass