Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob

Ippolito.

Closes issue #2750.
This commit is contained in:
Brett Cannon 2008-05-05 20:21:38 +00:00
parent 5f2e0e5ccb
commit 4b964f9c90
34 changed files with 2886 additions and 1 deletions

View file

@ -438,6 +438,8 @@ class PyBuildExt(build_ext):
exts.append( Extension("_fileio", ["_fileio.c"]) )
# _functools
exts.append( Extension("_functools", ["_functoolsmodule.c"]) )
# _json speedups
exts.append( Extension("_json", ["_json.c"]) )
# Python C API test module
exts.append( Extension('_testcapi', ['_testcapimodule.c']) )
# profilers (_lsprof is for cProfile.py)