Change a variable type to avoid signed overflow; replace repeated '19999' constant...
[python.git] / Lib / test / test_json.py
blob7b8f3de8a9814eac127d358812a397c3d9e93337
1 """Tests for json.
3 The tests for json are defined in the json.tests package;
4 the test_suite() function there returns a test suite that's ready to
5 be run.
6 """
8 import json.tests
9 import test.test_support
12 def test_main():
13 test.test_support.run_unittest(json.tests.test_suite())
16 if __name__ == "__main__":
17 test_main()