2019-07-26 15:51:09 +00:00
|
|
|
no-dict-iteritems
|
|
|
|
=================
|
2017-07-14 13:24:45 +00: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
|