b4494fa547
The docs now have multi-level breadcrumbs so including "Sanity Tests »" in the title on a sanity test page is redundant.
180 B
180 B
no-dict-iterkeys
The dict.iterkeys
method has been removed in Python 3.
Use the following instead:
for KEY in DICT:
pass