This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wolfete
Recipients
Date 2007-06-30.16:38:49
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
When feeding an parser with a tag in which its arguments contain a < (as in <a href='http://www.example.org/"<;'>example</a> the SGMLParsers doesn't handle the data/arguments correcly. For example, with the above string I get:

Fed: <a href='http://www.example.org/">;'>example</a>
Tag opened: a
Arg  href  ->  http://www.example.org/">;
Arg escaped 'http://www.example.org/">;'
Data: ;'>example
Tag closed: a

I have attached a small example.

I'm using python2.5.1

Cheers,

Álvaro.
History
Date User Action Args
2007-08-23 14:58:12adminlinkissue1745761 messages
2007-08-23 14:58:12admincreate