1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
"""Compare messages for exceptions other than SyntaxError"""
import messages_3_6
import messages_3_7
import messages_3_8
import messages_3_9
import messages_3_10
import messages_3_11
info_36 = messages_3_6.messages
info_37 = messages_3_7.messages
info_38 = messages_3_8.messages
info_39 = messages_3_9.messages
info_310 = messages_3_10.messages
info_311 = messages_3_11.messages
output = open("compare_messages.html", "w", encoding="utf8")
output.write("<div>\n")
files = set()
def print_different(fn_name, in_36, in_37, in_38, in_39, in_310, in_311):
# Just tracking changes going forward in time, from
# one version to the next.
printed_37 = False
printed_38 = False
printed_39 = False
printed_310 = False
if in_36 != in_37:
if fn_name not in files:
output.write("<div class='filename-header'>\n")
files.add(fn_name)
output.write(fn_name)
output.write("</div>\n")
output.write("<pre class='highlight friendly-small-pre'>")
output.write("<b>3.6: </b>" + in_36 + "\n")
output.write("<b>3.7: </b>" + in_37 + "\n")
printed_37 = True
output.write("</pre>\n")
if in_37 != in_38:
if fn_name not in files:
output.write("<div class='filename-header'>\n")
files.add(fn_name)
output.write(fn_name)
output.write("</div>\n")
output.write("<pre class='highlight friendly-small-pre'>")
if not printed_37:
output.write("<b>3.7: </b>" + in_37 + "\n")
output.write("<b>3.8: </b>" + in_38 + "\n")
printed_38 = True
output.write("</pre>\n")
if in_38 != in_39:
if fn_name not in files:
output.write("<div class='filename-header'>")
files.add(fn_name)
output.write(fn_name)
output.write("</div>\n")
output.write("<pre class='highlight friendly-small-pre'>")
if not printed_38:
output.write("<b>3.8: </b>" + in_38 + "\n")
output.write("<b>3.9: </b>" + in_39 + "\n")
printed_39 = True
output.write("</pre>\n")
if in_39 != in_310:
if fn_name not in files:
output.write("<div class='filename-header'>")
files.add(fn_name)
output.write(fn_name)
output.write("</div>\n")
output.write("<pre class='highlight friendly-small-pre'>")
if not printed_39:
output.write("<b>3.9: </b>" + in_39 + "\n")
output.write("<b>3.10: </b>" + in_310 + "\n")
printed_310 = True
output.write("</pre>\n")
if in_310 != in_311:
if fn_name not in files:
output.write("<div class='filename-header'>")
files.add(fn_name)
output.write(fn_name)
output.write("</div>\n")
output.write("<pre class='highlight friendly-small-pre'>")
if not printed_310:
output.write("<b>3.10: </b>" + in_310 + "\n")
output.write("<b>3.11: </b>" + in_311 + "\n")
output.write("</pre>\n")
keys = (
set(info_36.keys())
.union(set(info_37.keys()))
.union(set(info_38.keys()))
.union(set(info_39.keys()))
.union(set(info_310.keys()))
.union(set(info_311.keys()))
)
for f_name in keys:
messages_36 = (
info_36.get(f_name, "not present").replace("<", "<").replace(">", ">")
)
messages_37 = (
info_37.get(f_name, "not present").replace("<", "<").replace(">", ">")
)
messages_38 = (
info_38.get(f_name, "not present").replace("<", "<").replace(">", ">")
)
messages_39 = (
info_39.get(f_name, "not present").replace("<", "<").replace(">", ">")
)
messages_310 = (
info_310.get(f_name, "not present")
.replace("<", "<")
.replace(">", ">")
)
messages_311 = (
info_311.get(f_name, "not present")
.replace("<", "<")
.replace(">", ">")
)
print_different(
f_name,
messages_36,
messages_37,
messages_38,
messages_39,
messages_310,
messages_311,
)
output.write("</div>\n")
output.close()
|