Browse Source

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>
process-exit-stdio-flushing
Sakthipriyan Vairamani 9 years ago
parent
commit
73c18903aa
  1. 7
      tools/install.py

7
tools/install.py

@ -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

Loading…
Cancel
Save