tools: remove simplejson dependency

As Node.js expects either Python 2.6 or 2.7 installed to work properly,
simplejson module is no longer necessary. It was included in Python 2.6
as the json module.

PR-URL: https://github.com/nodejs/node/pull/6101
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
pull/6168/head
Sakthipriyan Vairamani 2016-04-07 20:58:11 +05:30
parent 819b2d36bc
commit 73c18903aa
1 changed files with 1 additions and 6 deletions

View File

@ -1,12 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
import errno import errno
import json
try:
import json
except ImportError:
import simplejson as json
import os import os
import re import re
import shutil import shutil