summaryrefslogtreecommitdiffstats
path: root/Doc/library/html.parser.rst
Commit message (Collapse)AuthorAgeFilesLines
* More source links.Raymond Hettinger2011-01-271-0/+4
|
* Add missing versionchanged, correct 'throw' wording to 'raise'.R. David Murray2010-12-031-2/+4
|
* #1486713: Add a tolerant mode to HTMLParser.R. David Murray2010-12-031-2/+11
| | | | | | | | | | | | The motivation for adding this option is that the the functionality it provides used to be provided by sgmllib in Python2, and was used by, for example, BeautifulSoup. Without this option, the Python3 version of BeautifulSoup and the many programs that use it are crippled. The original patch was by 'kxroberto'. I modified it heavily but kept his heuristics and test. I also added additional heuristics to fix #975556, #1046092, and part of #6191. This patch should be completely backward compatible: the behavior with the default strict=True is unchanged.
* Terminology fix: exceptions are raised, except in generator.throw().Georg Brandl2010-08-031-1/+1
|
* #3874: document HTMLParser.unknown_decl().Georg Brandl2010-07-291-4/+12
|
* Updated the last example as requested in #6350Ezio Melotti2009-06-271-8/+18
|
* Remove the htmllib and sgmllib modules as per PEP 3108.Georg Brandl2008-06-011-6/+2
|
* Merged revisions 63438 via svnmerge fromGeorg Brandl2008-05-181-0/+179
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. ........