1. 3358d58 bpo-30629: Remove second call of str.lower() in html.parser.parse_endtag. (#2099) by Motoki Naruse · 7 years ago
  2. c842efc Revert "Fixed a typo in the HTMLParser.feed docstrings" (#1771) by Serhiy Storchaka · 7 years ago
  3. 5ba1850 Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a rawstring. (#1759) by Jani Šumak · 7 years ago
  4. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  5. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 8 years ago
  6. 20a2c64 #23144: merge with 3.4. by Ezio Melotti · 9 years ago
  7. 6f2bb98 #23144: Make sure that HTMLParser.feed() returns all the data, even when convert_charrefs is True. by Ezio Melotti · 9 years ago
  8. 6fc16d8 #21047: set the default value for the *convert_charrefs* argument of HTMLParser to True. Patch by Berker Peksag. by Ezio Melotti · 10 years ago
  9. 73a4359 #15114: the strict mode and argument of HTMLParser, HTMLParser.error, and the HTMLParserError exception have been removed. by Ezio Melotti · 10 years ago
  10. 153d97b #20288: merge with 3.3. by Ezio Melotti · 11 years ago
  11. f27b9a7 #20288: fix handling of invalid numeric charrefs in HTMLParser. by Ezio Melotti · 11 years ago
  12. 95401c5 #13633: Added a new convert_charrefs keyword arg to HTMLParser that, when True, automatically converts all character references. by Ezio Melotti · 11 years ago
  13. f6de9eb #19688: add back and deprecate the internal HTMLParser.unescape() method. by Ezio Melotti · 11 years ago
  14. 4a9ee26 #2927: Added the unescape() function to the html module. by Ezio Melotti · 11 years ago
  15. b703881 #19480: merge with 3.3. by Ezio Melotti · 11 years ago
  16. 7165d8b #19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5 standard. by Ezio Melotti · 11 years ago
  17. 88ebfb1 #15114: The html.parser module now raises a DeprecationWarning when the strict argument of HTMLParser or the HTMLParser.error method are used. by Ezio Melotti · 11 years ago
  18. f6ca26f #17802: merge with 3.3. by Ezio Melotti · 11 years ago
  19. 8e596a7 #17802: Fix an UnboundLocalError in html.parser. Initial tests by Thomas Barlow. by Ezio Melotti · 11 years ago
  20. 1698bab #14679: add an __all__ (that contains only HTMLParser) to html.parser. by Ezio Melotti · 11 years ago
  21. 4649518 #15156: HTMLParser now uses the new "html.entities.html5" dictionary. by Ezio Melotti · 12 years ago
  22. 3861d8b #15114: the strict mode of HTMLParser and the HTMLParseError exception are deprecated now that the parser is able to parse invalid markup. by Ezio Melotti · 12 years ago
  23. 0780b6b #14538: HTMLParser can now parse correctly start tags that contain a bare /. by Ezio Melotti · 12 years ago
  24. 29877e8 HTMLParser is now able to handle slashes in the start tag. by Ezio Melotti · 12 years ago
  25. e31dded Fix an index and clean up comments. by Ezio Melotti · 12 years ago
  26. f4ab491 Improve handling of declarations in HTMLParser. by Ezio Melotti · 12 years ago
  27. 5211ffe #13993: HTMLParser is now able to handle broken end tags when strict=False. by Ezio Melotti · 12 years ago
  28. fa3702d #13960: HTMLParser is now able to handle broken comments when strict=False. by Ezio Melotti · 12 years ago
  29. 15cb489 #13358: HTMLParser now calls handle_data only once for each CDATA. by Ezio Melotti · 13 years ago
  30. c2fe577 #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in HTMLParser. by Ezio Melotti · 13 years ago
  31. 7de56f6 #670664: Fix HTMLParser to correctly handle the content of ``<script>...</script>`` and ``<style>...</style>``. by Ezio Melotti · 13 years ago
  32. f50ffa9 #13273: fix a bug that prevented HTMLParser to properly detect some tags when strict=False. by Ezio Melotti · 13 years ago
  33. d9e0b06 #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more than 128 entities. Patch by Peter Otten. by Ezio Melotti · 13 years ago
  34. 51b7aed Merge 3.1 by Éric Araujo · 13 years ago
  35. 39f180b Fix display of html.parser.HTMLParser.feed docstring by Éric Araujo · 13 years ago
  36. 2e3607c #7311: fix html.parser to accept non-ASCII attribute values. by Ezio Melotti · 13 years ago
  37. 6c85838 Merged revisions 87542 via svnmerge from by Senthil Kumaran · 14 years ago
  38. 164540f Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect syntax by Senthil Kumaran · 14 years ago
  39. b579dba #1486713: Add a tolerant mode to HTMLParser. by R. David Murray · 14 years ago
  40. 30c223c Merged revisions 81504 via svnmerge from by Victor Stinner · 14 years ago
  41. e021f4b Recorded merge of revisions 81500-81501 via svnmerge from by Victor Stinner · 14 years ago
  42. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
  43. f64dcf3 Change test_htmlparser to reflect the HTMLParser -> html.parser by Mark Dickinson · 16 years ago
  44. 3c50ea4 rename HTMLParser to html.parser and htmlentitydefs to html.entities; by Fred Drake · 16 years ago[Renamed (96%) from Lib/HTMLParser.py]
  45. cb5c80f rename markupbase to _markupbase by Fred Drake · 17 years ago
  46. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  47. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  48. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  49. cd3c26a Reverting previous checkin. This breaks too much of HTMLParser to be applied by Georg Brandl · 19 years ago
  50. 7847405 bug [ 761452 ] HTMLParser chokes on my.yahoo.com output by Georg Brandl · 19 years ago
  51. 49b4d19 remove unnecessary override of base class method by Fred Drake · 20 years ago
  52. b7d8ce0 [Bug #921657] Allow '@' in unquoted HTML attributes. Not strictly legal according to the HTML REC, but HTMLParser is already a pretty loose parser. Reported by Bernd Zimmermann. by Andrew M. Kuchling · 20 years ago
  53. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  54. 0834d77 Accept commas in unquoted attribute values. This closes SF patch #669683. by Fred Drake · 21 years ago
  55. 30d59ba Simplify code to remove an unnecessary test. by Fred Drake · 22 years ago
  56. 248b043 Convert to using string methods instead of the string module. by Fred Drake · 23 years ago
  57. bfc8fea Re-factor the HTMLParser class to use the new markupbase.ParserBase class. by Fred Drake · 23 years ago
  58. b64bec3 Whitespace normalization. by Tim Peters · 23 years ago
  59. 7cf613d HTMLParser is allowed to be more strict than sgmllib, so let's not by Fred Drake · 23 years ago
  60. 68eac2b Added reasonable parsing of the DOCTYPE declaration, fixed edge cases by Fred Drake · 23 years ago
  61. 029acfb Deal more appropriately with bare ampersands and pointy brackets; this by Fred Drake · 23 years ago
  62. 1d4601d Change some comments into docstrings. by Fred Drake · 23 years ago
  63. 1c48eb7 Merge my changes to the offending comment with Guido's changes. by Fred Drake · 23 years ago
  64. 07f353c Removed incorrect comment left over from sgmllib.py. by Guido van Rossum · 23 years ago
  65. 8846d71 A much improved HTML parser -- a replacement for sgmllib. The API is by Guido van Rossum · 23 years ago