summaryrefslogtreecommitdiffstats
path: root/Doc/library/html.entities.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+1
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
|
* Closes #23181: codepoint -> code pointGeorg Brandl2015-01-141-2/+2
|
* Merge broken link fix from 3.3.Ezio Melotti2013-11-251-1/+1
|\
| * Fix broken link in html.entities docs.Ezio Melotti2013-11-251-1/+1
| |
* | #2927: Added the unescape() function to the html module.Ezio Melotti2013-11-191-0/+1
|/
* #15156: HTMLParser now uses the new "html.entities.html5" dictionary.Ezio Melotti2012-06-241-4/+0
|
* #11113: add a new "html5" dictionary containing the named character ↵Ezio Melotti2012-06-241-2/+19
| | | | references defined by the HTML5 standard and the equivalent Unicode character(s) to the html.entities module.
* issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ↵Senthil Kumaran2011-07-041-1/+1
| | | | attribute and 'methods' where it denotes methods. Context should clarify usage.
* More source links.Raymond Hettinger2011-01-271-0/+3
|
* Remove the htmllib and sgmllib modules as per PEP 3108.Georg Brandl2008-06-011-5/+4
|
* Merged revisions 63438 via svnmerge fromGeorg Brandl2008-05-181-0/+30
svn+ssh://pythondev@svn.python.org/python/trunk ........ r63438 | georg.brandl | 2008-05-17 23:54:03 +0200 (Sat, 17 May 2008) | 3 lines Rename html.parser file, and split html.entities from htmllib to ease removal of the latter in Py3k. ........