Make hb_test_tools.py work in Python 3.13

This commit is contained in:
David Corbett 2024-12-15 12:01:33 -05:00 committed by Behdad Esfahbod
parent f887096ab1
commit edb3b20895

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python3
import sys, os, re, difflib, unicodedata, errno, cgi, itertools
import sys, os, re, difflib, unicodedata, errno, html, itertools
from itertools import *
diff_symbols = "-+=*&^%$#@!~/"
@ -45,7 +45,7 @@ class ColorFormatter:
def end_color ():
return '</span>'
@staticmethod
def escape (s): return cgi.escape (s)
def escape (s): return html.escape (s)
@staticmethod
def newline (): return '<br/>\n'