]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-30629: Remove second call of str.lower() in html.parser.parse_endtag. (#2099)
authorMotoki Naruse <motoki@naru.se>
Sat, 17 Jun 2017 01:15:25 +0000 (10:15 +0900)
committerterryjreedy <tjreedy@udel.edu>
Sat, 17 Jun 2017 01:15:25 +0000 (21:15 -0400)
commit3358d589fb51372a56ddcfffa277855e5661c4c0
tree6a9d1b5bfca4f79fd2dd570ea3a2f5a85a3d80b8
parent2d98c5354239e600cc4f799feabc9cb44666118e
bpo-30629: Remove second call of str.lower() in html.parser.parse_endtag. (#2099)

elem is the result of .lower() 6 lines above the handle_endtag call.
Patch by Motoki Naruse
Lib/html/parser.py