1. 3511c2e [3.11] gh-135661: Fix parsing attributes with whitespaces around the "=" separator in HTMLParser (GH-136908) (GH-136920) by Miss Islington (bot) · 5 weeks ago
  2. 228509e [3.11] gh-135661: Fix parsing start and end tags in HTMLParser according to the HTML5 standard (GH-135930) (GH-136268) (#136291) by Miss Islington (bot) · 7 weeks ago
  3. d8f6297 [3.11] gh-102555: Fix comment parsing in HTMLParser according to the HTML5 standard (GH-135664) (GH-136274) by Miss Islington (bot) · 7 weeks ago
  4. f3c6f88 [3.11] gh-135462: Fix quadratic complexity in processing special input in HTMLParser (GH-135464) (GH-135484) by Serhiy Storchaka · 8 weeks ago
  5. e9103e6 [3.11] gh-100210: Correct the comment link for unescaping HTML (GH-100212) (#102044) by Miss Islington (bot) · 2 years, 6 months ago
  6. d707d07 Add source for character mappings (#92014) by slateny · 3 years, 4 months ago
  7. 562c0d7 bpo-45421: Remove dead code from html.parser (GH-28847) by Alberto Mardegan · 3 years, 11 months ago
  8. 745c9d9 Fix typos in the Lib directory (GH-28775) by Christian Clauss · 3 years, 11 months ago
  9. 9eb11a1 bpo-41748: Handles unquoted attributes with commas (#24072) by Karl Dubost · 4 years, 7 months ago
  10. fae0ed5 bpo-37328: remove deprecated HTMLParser.unescape (GH-14186) by Inada Naoki · 6 years ago
  11. 3358d58 bpo-30629: Remove second call of str.lower() in html.parser.parse_endtag. (#2099) by Motoki Naruse · 8 years ago
  12. c842efc Revert "Fixed a typo in the HTMLParser.feed docstrings" (#1771) by Serhiy Storchaka · 8 years ago
  13. 5ba1850 Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a rawstring. (#1759) by Jani Šumak · 8 years ago
  14. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 9 years ago
  15. 46f5072 Issue #27076: Doc, comment and tests spelling fixes by Martin Panter · 9 years ago
  16. 4827e48 Merge spelling fixes from 3.4 into 3.5 by Martin Panter · 10 years ago
  17. 1f1177d Fix some spelling errors in documentation and code comments by Martin Panter · 10 years ago
  18. 20a2c64 #23144: merge with 3.4. by Ezio Melotti · 10 years ago
  19. 6f2bb98 #23144: Make sure that HTMLParser.feed() returns all the data, even when convert_charrefs is True. by Ezio Melotti · 10 years ago
  20. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 11 years ago
  21. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 11 years ago
  22. 6fc16d8 #21047: set the default value for the *convert_charrefs* argument of HTMLParser to True. Patch by Berker Peksag. by Ezio Melotti · 11 years ago
  23. 11bec7a Add an __all__ to html.entities. by Ezio Melotti · 11 years ago
  24. 73a4359 #15114: the strict mode and argument of HTMLParser, HTMLParser.error, and the HTMLParserError exception have been removed. by Ezio Melotti · 11 years ago
  25. 153d97b #20288: merge with 3.3. by Ezio Melotti · 12 years ago
  26. f27b9a7 #20288: fix handling of invalid numeric charrefs in HTMLParser. by Ezio Melotti · 12 years ago
  27. 95401c5 #13633: Added a new convert_charrefs keyword arg to HTMLParser that, when True, automatically converts all character references. by Ezio Melotti · 12 years ago
  28. f6de9eb #19688: add back and deprecate the internal HTMLParser.unescape() method. by Ezio Melotti · 12 years ago
  29. 4a9ee26 #2927: Added the unescape() function to the html module. by Ezio Melotti · 12 years ago
  30. b703881 #19480: merge with 3.3. by Ezio Melotti · 12 years ago
  31. 7165d8b #19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5 standard. by Ezio Melotti · 12 years ago
  32. 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 · 12 years ago
  33. 4603487 #18020: improve html.escape speed by an order of magnitude. Patch by Matt Bryant. by Ezio Melotti · 12 years ago
  34. f6ca26f #17802: merge with 3.3. by Ezio Melotti · 12 years ago
  35. 8e596a7 #17802: Fix an UnboundLocalError in html.parser. Initial tests by Thomas Barlow. by Ezio Melotti · 12 years ago
  36. 1698bab #14679: add an __all__ (that contains only HTMLParser) to html.parser. by Ezio Melotti · 12 years ago
  37. e6e96ee #16245: Fix the value of a few entities in html.entities.html5. by Ezio Melotti · 13 years ago
  38. 518dbfd Reorder html.entities.html5 entities to make updates easier. Patch by Iuliia Proskurnia. by Ezio Melotti · 13 years ago
  39. 4649518 #15156: HTMLParser now uses the new "html.entities.html5" dictionary. by Ezio Melotti · 13 years ago
  40. dc44f55 #11113: add a new "html5" dictionary containing the named character references defined by the HTML5 standard and the equivalent Unicode character(s) to the html.entities module. by Ezio Melotti · 13 years ago
  41. 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 · 13 years ago
  42. 0780b6b #14538: HTMLParser can now parse correctly start tags that contain a bare /. by Ezio Melotti · 13 years ago
  43. 29877e8 HTMLParser is now able to handle slashes in the start tag. by Ezio Melotti · 14 years ago
  44. e31dded Fix an index and clean up comments. by Ezio Melotti · 14 years ago
  45. f4ab491 Improve handling of declarations in HTMLParser. by Ezio Melotti · 14 years ago
  46. 5211ffe #13993: HTMLParser is now able to handle broken end tags when strict=False. by Ezio Melotti · 14 years ago
  47. fa3702d #13960: HTMLParser is now able to handle broken comments when strict=False. by Ezio Melotti · 14 years ago
  48. 15cb489 #13358: HTMLParser now calls handle_data only once for each CDATA. by Ezio Melotti · 14 years ago
  49. c2fe577 #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in HTMLParser. by Ezio Melotti · 14 years ago
  50. 7de56f6 #670664: Fix HTMLParser to correctly handle the content of ``<script>...</script>`` and ``<style>...</style>``. by Ezio Melotti · 14 years ago
  51. f50ffa9 #13273: fix a bug that prevented HTMLParser to properly detect some tags when strict=False. by Ezio Melotti · 14 years ago
  52. d71bbf9 Fix issue12938 - Update the docstring of html.escape. Include the information on single quote. by Senthil Kumaran · 14 years ago
  53. d9e0b06 #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more than 128 entities. Patch by Peter Otten. by Ezio Melotti · 14 years ago
  54. 51b7aed Merge 3.1 by Éric Araujo · 14 years ago
  55. 39f180b Fix display of html.parser.HTMLParser.feed docstring by Éric Araujo · 14 years ago
  56. 2e3607c #7311: fix html.parser to accept non-ASCII attribute values. by Ezio Melotti · 14 years ago
  57. 6c85838 Merged revisions 87542 via svnmerge from by Senthil Kumaran · 15 years ago
  58. 164540f Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect syntax by Senthil Kumaran · 15 years ago
  59. b579dba #1486713: Add a tolerant mode to HTMLParser. by R. David Murray · 15 years ago
  60. 1f7fffb #2830: add html.escape() helper and move cgi.escape() uses in the standard 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. by Georg Brandl · 15 years ago
  61. 30c223c Merged revisions 81504 via svnmerge from by Victor Stinner · 15 years ago
  62. e021f4b Recorded merge of revisions 81500-81501 via svnmerge from by Victor Stinner · 15 years ago
  63. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 17 years ago
  64. f64dcf3 Change test_htmlparser to reflect the HTMLParser -> html.parser by Mark Dickinson · 17 years ago
  65. 3c50ea4 rename HTMLParser to html.parser and htmlentitydefs to html.entities; by Fred Drake · 17 years ago