diff --git a/Lib/cgi.py b/Lib/cgi.py index 20f4700d7a3..4f1b4594935 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -1316,12 +1316,14 @@ environment as well. Here are some common variable names: # Utilities # ========= -def escape(s): +def escape(s, quote=None): """Replace special characters '&', '<' and '>' by SGML entities.""" import regsub s = regsub.gsub("&", "&", s) # Must be done first! s = regsub.gsub("<", "<", s) s = regsub.gsub(">", ">", s) + if quote: + s = regsub.gsub('"', """, s) return s