saltstack-formulas/varnish-formula

Deprecated iteritems() method not forward-compatible with Python 3

xenophonf opened this issue · 2 comments

Formulas iterating over dictionaries should use the items() method instead of iteritems() because the latter method has been removed from Python 3. While the items() method in Python 2 uses more memory than iteritems(), these dictionaries are typically small (e.g., sets of settings from Pillar).

Sorry to bother, but we can close this one :)

Thanks.

Thank you!