[issue15679] HTMLParser can fail on unquoted attributes.

2012-08-16 Thread R. David Murray
R. David Murray added the comment: This is fixed in more recent versions of Python (2.7, 3.2+). -- nosy: +r.david.murray resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue15679] HTMLParser can fail on unquoted attributes.

2012-08-16 Thread Julien Palard
New submission from Julien Palard: This is accepted by browsers but raises an exception in HTMLParser : from HTMLParser import HTMLParser HTMLParser().feed("") -- components: Library (Lib) messages: 168352 nosy: JulienPalard priority: normal severity: normal status: open title: HTMLPars