django-formula icon indicating copy to clipboard operation
django-formula copied to clipboard

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

Open xenophonf opened this issue 9 years ago • 0 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).

xenophonf avatar Jul 30 '15 13:07 xenophonf