mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob
Ippolito. Closes issue #2750.
This commit is contained in:
parent
5f2e0e5ccb
commit
4b964f9c90
34 changed files with 2886 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue