We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0d59b1 commit a3b7a14Copy full SHA for a3b7a14
1 file changed
Doc/whatsnew/3.2.rst
@@ -1338,6 +1338,17 @@ The :mod:`sqlite3` module was updated to version 2.6.0. It has two new capabili
1338
1339
(Contributed by R. David Murray and Shashwat Anand; :issue:`8845`.)
1340
1341
+html
1342
+----
1343
+
1344
+A new :mod:`html` module was introduced with only a single function,
1345
+:func:`~html.escape`, which is used for escaping reserved characters from HTML
1346
+markup:
1347
1348
+>>> import html
1349
+>>> html.escape('x > 2 && x < 7')
1350
+'x > 2 && x < 7'
1351
1352
socket
1353
------
1354
0 commit comments