mistral/HACKING.rst
loooosy 2ea1df5aa2 Optimize the link address
Use https instead of http to ensure the safety

Change-Id: If1f5f2ce86b82ed48a7d8a990773638363f6043a
2017-04-17 22:02:34 +08:00

16 lines
541 B
ReStructuredText

Style Commandments
==================
Read the OpenStack Style Commandments https://docs.openstack.org/developer/hacking/
Mistral Specific Commandments
-----------------------------
- [M318] Change assertEqual(A, None) or assertEqual(None, A) by optimal assert
like assertIsNone(A)
- [M327] Do not use xrange(). xrange() is not compatible with Python 3. Use
range() or six.moves.range() instead.
- [M328] Python 3: do not use dict.iteritems.
- [M329] Python 3: do not use dict.iterkeys.
- [M330] Python 3: do not use dict.itervalues.