Commit a3b7a14d authored by Raymond Hettinger's avatar Raymond Hettinger

Add entry for the html module.

parent d0d59b13
......@@ -1338,6 +1338,17 @@ The :mod:`sqlite3` module was updated to version 2.6.0. It has two new capabili
(Contributed by R. David Murray and Shashwat Anand; :issue:`8845`.)
html
----
A new :mod:`html` module was introduced with only a single function,
:func:`~html.escape`, which is used for escaping reserved characters from HTML
markup:
>>> import html
>>> html.escape('x > 2 && x < 7')
'x &gt; 2 &amp;&amp; x &lt; 7'
socket
------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment