Remove use of simplejson throughout code base (#43548)

* Remove use of simplejson throughout code base. Fixes #42761

* Address failing tests

* Remove simplejson from contrib and other outlying files

* Add changelog fragment for simplejson removal
This commit is contained in:
Matt Martz
2018-08-10 11:13:29 -05:00
committed by GitHub
parent 96346938ee
commit c1c229c6d4
55 changed files with 73 additions and 285 deletions

View File

@@ -44,10 +44,7 @@ import ansible.constants as C
from ansible.module_utils._text import to_native, to_text
from ansible.template import Templar
try:
import json
except ImportError:
import simplejson as json
import json
def parse():