deb-murano/HACKING.rst
Ravi Shekhar Jethani e633fd004a Python3: Replace dict.itervalues with six.itervalues
This also adds a check to murano/hacking/checks.py that should
catch this error in the future.

Blueprint murano-python-3-support

Change-Id: I50a8b2f98ddbc2819ae180b68468e0a51c13281b
2016-01-18 03:04:23 -08:00

376 B

Style Commandments

Read the OpenStack Style Commandments http://docs.openstack.org/developer/hacking/

Murano Specific Commandments ---------------------------

  • [M322] Method's default argument shouldn't be mutable.
  • [M323] Python 3: do not use dict.iteritems.
  • [M324] Python 3: do not use dict.iterkeys.
  • [M325] Python 3: do not use dict.itervalues.