ref: 9e9c37f5771c989630fa670aaafdc2ab1fdf1edf
parent: db5208b41f8a505f68ddbccb34dca206df9ca77e
author: Bryan Bishop <[email protected]>
date: Sun Jan 27 12:14:55 EST 2013
py26 fix for RomStr.load_labels (json)
--- a/extras/romstr.py
+++ b/extras/romstr.py
@@ -4,10 +4,14 @@
import os
import time
import datetime
-import json
from ctypes import c_int8
from copy import copy
+import json
+# New versions of json don't have read anymore.
+if not hasattr(json, "read"):
+ json.read = json.loads
+
from labels import (
get_label_from_line,
get_address_from_line_comment,
@@ -100,7 +104,7 @@
file_handler.close()
# load the labels from the file
- self.labels = json.loads(open(filename, "r").read())
+ self.labels = json.read(open(filename, "r").read())
def get_address_for(self, label):
""" Returns the address of a label. This is slow and could be improved