mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
Make hb_test_tools.py work in Python 3.13
This commit is contained in:
parent
f887096ab1
commit
edb3b20895
1 changed files with 2 additions and 2 deletions
|
@ -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'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue