b4494fa547
The docs now have multi-level breadcrumbs so including "Sanity Tests »" in the title on a sanity test page is redundant.
9 lines
180 B
ReStructuredText
9 lines
180 B
ReStructuredText
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
|