From df820deebca564cde28cfdf918d39348b33b2ded Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sun, 1 Sep 2013 13:06:27 -0500 Subject: remove the 'json.read = json.loads' hack There's no good reason to use json.read anymore, even in the case of jython. --- pokemontools/crystal.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py index 4941dc2..1f7f87a 100644 --- a/pokemontools/crystal.py +++ b/pokemontools/crystal.py @@ -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, -- cgit v1.2.3