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>
v4.x
Sakthipriyan Vairamani 9 years ago
committed by Myles Borins
parent
commit
68c7de4372
  1. 7
      tools/install.py

7
tools/install.py

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

Loading…
Cancel
Save