]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob
authorBrett Cannon <bcannon@gmail.com>
Mon, 5 May 2008 20:21:38 +0000 (20:21 +0000)
committerBrett Cannon <bcannon@gmail.com>
Mon, 5 May 2008 20:21:38 +0000 (20:21 +0000)
commit4b964f9c904744b7d7d88054e54a2e4ca8aeb395
treec24ba51492fc3fc714c54f2e671f21172d063908
parent5f2e0e5ccb988cdf65137034b33ee57198cc23b9
Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob
Ippolito.

Closes issue #2750.
34 files changed:
Doc/library/json.rst [new file with mode: 0644]
Doc/library/netdata.rst
Doc/whatsnew/2.6.rst
Lib/json/__init__.py [new file with mode: 0644]
Lib/json/decoder.py [new file with mode: 0644]
Lib/json/encoder.py [new file with mode: 0644]
Lib/json/scanner.py [new file with mode: 0644]
Lib/json/tests/__init__.py [new file with mode: 0644]
Lib/json/tests/test_decode.py [new file with mode: 0644]
Lib/json/tests/test_default.py [new file with mode: 0644]
Lib/json/tests/test_dump.py [new file with mode: 0644]
Lib/json/tests/test_encode_basestring_ascii.py [new file with mode: 0644]
Lib/json/tests/test_fail.py [new file with mode: 0644]
Lib/json/tests/test_float.py [new file with mode: 0644]
Lib/json/tests/test_indent.py [new file with mode: 0644]
Lib/json/tests/test_pass1.py [new file with mode: 0644]
Lib/json/tests/test_pass2.py [new file with mode: 0644]
Lib/json/tests/test_pass3.py [new file with mode: 0644]
Lib/json/tests/test_recursion.py [new file with mode: 0644]
Lib/json/tests/test_scanstring.py [new file with mode: 0644]
Lib/json/tests/test_separators.py [new file with mode: 0644]
Lib/json/tests/test_speedups.py [new file with mode: 0644]
Lib/json/tests/test_unicode.py [new file with mode: 0644]
Lib/json/tool.py [new file with mode: 0644]
Lib/test/test_json.py [new file with mode: 0644]
Misc/NEWS
Modules/_json.c [new file with mode: 0644]
PC/VC6/pythoncore.dsp
PC/VS7.1/pythoncore.vcproj
PC/VS8.0/pythoncore.vcproj
PC/config.c
PCbuild/pcbuild.sln
PCbuild/pythoncore.vcproj
setup.py