Delete local copy of simplejson.
authorBen Pfaff <blp@nicira.com>
Sat, 21 Aug 2010 22:39:27 +0000 (15:39 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 25 Aug 2010 21:55:48 +0000 (14:55 -0700)
commit1900fc2c706f6ce204d0710532daaee99ccc5f0c
tree3e15721d14adb5cb82b36dc729fffd171b88a363
parent991559357f6a03c3a5b70c053c8c2554aa8d5ee4
Delete local copy of simplejson.

The previous commit dropped usage of simplejson from the Python
code in the tree, because it did not provide adequate features to
support the JSON-RPC engine.  In particular simplejson is not a
"push parser"--you can't give it a byte or a character at a time
and have it tell you when it has read a whole JSON value.
24 files changed:
COPYING
ovsdb/automake.mk
ovsdb/simplejson/__init__.py [deleted file]
ovsdb/simplejson/_speedups.c [deleted file]
ovsdb/simplejson/decoder.py [deleted file]
ovsdb/simplejson/encoder.py [deleted file]
ovsdb/simplejson/scanner.py [deleted file]
ovsdb/simplejson/tests/__init__.py [deleted file]
ovsdb/simplejson/tests/test_check_circular.py [deleted file]
ovsdb/simplejson/tests/test_decode.py [deleted file]
ovsdb/simplejson/tests/test_default.py [deleted file]
ovsdb/simplejson/tests/test_dump.py [deleted file]
ovsdb/simplejson/tests/test_encode_basestring_ascii.py [deleted file]
ovsdb/simplejson/tests/test_fail.py [deleted file]
ovsdb/simplejson/tests/test_float.py [deleted file]
ovsdb/simplejson/tests/test_indent.py [deleted file]
ovsdb/simplejson/tests/test_pass1.py [deleted file]
ovsdb/simplejson/tests/test_pass2.py [deleted file]
ovsdb/simplejson/tests/test_pass3.py [deleted file]
ovsdb/simplejson/tests/test_recursion.py [deleted file]
ovsdb/simplejson/tests/test_scanstring.py [deleted file]
ovsdb/simplejson/tests/test_separators.py [deleted file]
ovsdb/simplejson/tests/test_unicode.py [deleted file]
ovsdb/simplejson/tool.py [deleted file]