2019-07-26 17:51:09 +02:00
|
|
|
no-dict-iteritems
|
|
|
|
=================
|
2017-07-14 15:24:45 +02:00
|
|
|
|
|
|
|
The ``dict.iteritems`` method has been removed in Python 3. There are two recommended alternatives:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
for KEY, VALUE in DICT.items():
|
|
|
|
pass
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from ansible.module_utils.six import iteritems
|
|
|
|
|
|
|
|
for KEY, VALUE in iteritems(DICT):
|
|
|
|
pass
|