remove the 'json.read = json.loads' hack

There's no good reason to use json.read anymore, even in the case of
jython.
This commit is contained in:
Bryan Bishop 2013-09-01 13:06:27 -05:00
parent 768046bfcd
commit df820deebc

View File

@ -17,10 +17,6 @@ import string
if not hasattr(json, "dumps"):
json.dumps = json.write
# New versions of json don't have read anymore.
if not hasattr(json, "read"):
json.read = json.loads
from labels import (
remove_quoted_text,
line_has_comment_address,