index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_htmlparser.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.13] gh-118350: Fix support of elements "textarea" and "title" in HTMLParse...
Miss Islington (bot)
2025-07-22
1
-0/+96
*
[3.13] gh-135661: Fix parsing attributes with whitespaces around the "=" sepa...
Miss Islington (bot)
2025-07-22
1
-12/+16
*
[3.13] gh-102555: Fix comment parsing in HTMLParser according to the HTML5 st...
Miss Islington (bot)
2025-07-04
1
-2/+30
*
[3.13] gh-135661: Fix parsing start and end tags in HTMLParser according to t...
Miss Islington (bot)
2025-07-03
1
-55/+100
*
[3.13] gh-135462: Fix quadratic complexity in processing special input in HTM...
Miss Islington (bot)
2025-06-13
1
-20/+77
*
[3.13] gh-86155: Fix data loss after unclosed script or style tag in HTMLPars...
Miss Islington (bot)
2025-05-10
1
-0/+10
*
[3.13] gh-77057: Fix handling of invalid markup declarations in HTMLParser (G...
Miss Islington (bot)
2025-05-10
1
-17/+64
*
[3.13] gh-69426: HTMLParser: only unescape properly terminated character enti...
Miss Islington (bot)
2025-05-09
1
-8/+35
*
gh-95813: Improve HTMLParser from the view of inheritance (#95874)
Dong-hee Na
2022-08-18
1
-0/+14
*
bpo-41748: Handles unquoted attributes with commas (#24072)
Karl Dubost
2021-02-01
1
-36/+56
*
bpo-37328: remove deprecated HTMLParser.unescape (GH-14186)
Inada Naoki
2019-08-27
1
-7/+0
*
#27364: fix "incorrect" uses of escape character in the stdlib.
R David Murray
2016-09-08
1
-1/+1
*
Issue #23277: Remove unused support.run_unittest import.
Serhiy Storchaka
2016-04-24
1
-1/+0
*
#23144: merge with 3.4.
Ezio Melotti
2015-09-06
1
-3/+12
|
\
|
*
#23144: Make sure that HTMLParser.feed() returns all the data, even when conv...
Ezio Melotti
2015-09-06
1
-3/+12
*
|
#21047: set the default value for the *convert_charrefs* argument of HTMLPars...
Ezio Melotti
2014-08-02
1
-5/+2
*
|
#15114: the strict mode and argument of HTMLParser, HTMLParser.error, and the...
Ezio Melotti
2014-08-02
1
-64/+5
|
/
*
#20288: merge with 3.3.
Ezio Melotti
2014-02-01
1
-0/+6
|
\
|
*
#20288: fix handling of invalid numeric charrefs in HTMLParser.
Ezio Melotti
2014-02-01
1
-0/+6
*
|
#13633: Added a new convert_charrefs keyword arg to HTMLParser that, when Tru...
Ezio Melotti
2013-11-23
1
-8/+62
*
|
#19688: add back and deprecate the internal HTMLParser.unescape() method.
Ezio Melotti
2013-11-22
1
-0/+7
*
|
#2927: Added the unescape() function to the html module.
Ezio Melotti
2013-11-19
1
-12/+0
*
|
#19480: merge with 3.3.
Ezio Melotti
2013-11-07
1
-4/+13
|
\
\
|
|
/
|
*
#19480: HTMLParser now accepts all valid start-tag names as defined by the HT...
Ezio Melotti
2013-11-07
1
-4/+13
*
|
Merge test_htmlparser changes from 3.3.
Ezio Melotti
2013-11-02
1
-7/+1
|
\
\
|
|
/
|
*
Use unittest.main() in test_htmlparser.
Ezio Melotti
2013-11-02
1
-7/+1
*
|
#15114: The html.parser module now raises a DeprecationWarning when the stric...
Ezio Melotti
2013-11-02
1
-3/+14
|
/
*
#17802: Fix an UnboundLocalError in html.parser. Initial tests by Thomas Bar...
Ezio Melotti
2013-05-01
1
-0/+14
*
#15156: HTMLParser now uses the new "html.entities.html5" dictionary.
Ezio Melotti
2012-06-24
1
-1/+6
*
#15114: the strict mode of HTMLParser and the HTMLParseError exception are de...
Ezio Melotti
2012-06-23
1
-2/+4
*
#14538: HTMLParser can now parse correctly start tags that contain a bare /.
Ezio Melotti
2012-04-19
1
-0/+10
*
HTMLParser is now able to handle slashes in the start tag.
Ezio Melotti
2012-02-21
1
-0/+21
*
Fix an index and clean up comments.
Ezio Melotti
2012-02-13
1
-1/+0
*
Improve handling of declarations in HTMLParser.
Ezio Melotti
2012-02-13
1
-21/+29
*
Fix htmlparser tests to always use the right collector.
Ezio Melotti
2012-02-13
1
-2/+26
*
#13993: HTMLParser is now able to handle broken end tags when strict=False.
Ezio Melotti
2012-02-13
1
-2/+41
*
#13960: HTMLParser is now able to handle broken comments when strict=False.
Ezio Melotti
2012-02-10
1
-0/+30
*
#13576: add tests about the handling of (possibly broken) condcoms.
Ezio Melotti
2011-12-19
1
-0/+43
*
#13358: HTMLParser now calls handle_data only once for each CDATA.
Ezio Melotti
2011-11-18
1
-1/+21
*
#1745761, #755670, #13357, #12629, #1200313: improve attribute handling in HT...
Ezio Melotti
2011-11-14
1
-14/+93
*
Group tests about attributes in a separate class.
Ezio Melotti
2011-11-14
1
-59/+62
*
Make sure that the tolerant parser still parses valid HTML correctly.
Ezio Melotti
2011-11-01
1
-17/+19
*
Avoid reusing the same collector in the tests.
Ezio Melotti
2011-11-01
1
-10/+11
*
#12008: add a test.
Ezio Melotti
2011-11-01
1
-0/+24
*
#670664: Fix HTMLParser to correctly handle the content of ``<script>...</scr...
Ezio Melotti
2011-11-01
1
-12/+30
*
#13273: fix a bug that prevented HTMLParser to properly detect some tags when...
Ezio Melotti
2011-10-28
1
-0/+33
*
#12888: Fix a bug in HTMLParser.unescape that prevented it to escape more tha...
Ezio Melotti
2011-09-05
1
-1/+2
*
#7311: fix html.parser to accept non-ASCII attribute values.
Ezio Melotti
2011-04-07
1
-0/+17
*
Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect...
Senthil Kumaran
2010-12-28
1
-0/+5
*
#1486713: Add a tolerant mode to HTMLParser.
R. David Murray
2010-12-03
1
-6/+42
[next]