summaryrefslogtreecommitdiffstats
path: root/Doc/library/html.rst
Commit message (Collapse)AuthorAgeFilesLines
* #2927: Added the unescape() function to the html module.Ezio Melotti2013-11-191-0/+11
|
* Closes #11710: create "landing pages" (/library/package.html) for those ↵Georg Brandl2012-10-061-0/+7
| | | | packages that have no documented content themselves, e.g. "urllib" or "http".
* Closes #14545: make clearer what was added.Georg Brandl2012-04-111-2/+2
|
* More source links.Raymond Hettinger2011-01-271-0/+3
|
* #2830: add html.escape() helper and move cgi.escape() uses in the standard ↵Georg Brandl2010-10-151-0/+18
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.