1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/docs/docsite/rst/dev_guide/testing/sanity/no-dict-iterkeys.rst

10 lines
211 B
ReStructuredText
Raw Normal View History

Sanity Tests » no-dict-iterkeys
===============================
The ``dict.iterkeys`` method has been removed in Python 3. Use the following instead:
.. code-block:: python
for KEY in DICT:
pass