murano/HACKING.rst
wangqi 91bc4baf78 Title overline too short
Change-Id: Ic68f5ebb6bfa32dce0e7ac04480724521c23d5d6
2018-11-07 15:00:29 +00:00

519 B

Style Commandments

Read the OpenStack Style Commandments https://docs.openstack.org/hacking/latest/

Murano Specific Commandments

  • [M318] Change assertEqual(A, None) or assertEqual(None, A) by optimal assert like assertIsNone(A)
  • [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.
  • [M326] Python 3: do not use basestring.