summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_html.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-1/+0
| | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
* Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-2/+2
|
* #2927: Added the unescape() function to the html module.Ezio Melotti2013-11-191-3/+83
|
* #2830: add html.escape() helper and move cgi.escape() uses in the standard ↵Georg Brandl2010-10-151-0/+24
library to it. It defaults to quote=True and also escapes single quotes, which makes casual use safer. The cgi.escape() interface is not touched, but emits a (silent) PendingDeprecationWarning.