Commit 0c4d7f3d8556613f7c7317c9c756bd2c6751913c

Martin Mitas 2020-07-28T07:18:23

test/normalize.py: Use html.escape instead of cgi.escape. Fixes #123.

diff --git a/test/normalize.py b/test/normalize.py
index 6073bf0..f8ece18 100755
--- a/test/normalize.py
+++ b/test/normalize.py
@@ -13,7 +13,7 @@ except ImportError:
 from html.entities import name2codepoint
 import sys
 import re
-import cgi
+import html
 
 # Normalization code, adapted from
 # https://github.com/karlcow/markdown-testsuite/
@@ -66,7 +66,7 @@ class MyHTMLParser(HTMLParser):
                     self.output += ("=" + '"' +
                             urllib.quote(urllib.unquote(v), safe='/') + '"')
                 elif v != None:
-                    self.output += ("=" + '"' + cgi.escape(v,quote=True) + '"')
+                    self.output += ("=" + '"' + html.escape(v,quote=True) + '"')
         self.output += ">"
         self.last_tag = tag
         self.last = "starttag"