summaryrefslogtreecommitdiff
path: root/HACKING.rst
diff options
context:
space:
mode:
authorIhar Hrachyshka <ihrachys@redhat.com>2014-08-08 00:04:44 +0200
committerIhar Hrachyshka <ihrachys@redhat.com>2014-08-14 12:45:58 +0200
commit0a75865b1f9bb728d6c1efc8b49586537526ed88 (patch)
treee1ce51083dcb30c656814da264dd3ae9cfdfd700 /HACKING.rst
parent4b3547c28c244f70803de9dc47d767f80b7ec2dc (diff)
downloadneutron-0a75865b1f9bb728d6c1efc8b49586537526ed88.tar.gz
Use jsonutils instead of stdlib json
jsonutils provides multiple benefits in comparison to pure stdlib json (like using simplejson on Python 2.6). Similar patch was already merged before [1], but since it lacked hacking rule to enforce jsonutils usage, new occurrences of stdlib json module usage were introduced. This patch switches all the code to using jsonutils and adds a hacking rule to enforce the rule. The hacking rule requires that jsonutils module does not mimic as 'json' thru using import renames, so the code was updated not to rename the module when doing import. The hacking rule was shamelessly copied from the corresponding nova review [2]. [1]: https://review.openstack.org/#/c/99760/ [2]: https://review.openstack.org/111296/ Change-Id: Ie7a5bb76445e15cde9fbf9ff3d2101a014637b37
Diffstat (limited to 'HACKING.rst')
-rw-r--r--HACKING.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 84f6f3e1c7..0f3666fc0a 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -9,6 +9,7 @@ Neutron Specific Commandments
--------------------------
- [N320] Validate that LOG messages, except debug ones, have translations
+- [N321] Validate that jsonutils module is used instead of json
Creating Unit Tests
-------------------