[issue15120] Different behavior of html.parser.HTMLParser

2012-06-21 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> invalid stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing

[issue15120] Different behavior of html.parser.HTMLParser

2012-06-21 Thread hansokumake
hansokumake added the comment: I'm sorry. It's my fault. I still use Python 3.2.2. -- status: open -> closed ___ Python tracker ___ _

[issue15120] Different behavior of html.parser.HTMLParser

2012-06-21 Thread Ezio Melotti
Ezio Melotti added the comment: What exact version of python have you used? The example works here with 3.2.3+. -- assignee: docs@python -> ezio.melotti ___ Python tracker ___ _

[issue15120] Different behavior of html.parser.HTMLParser

2012-06-21 Thread Fred L. Drake, Jr.
Changes by Fred L. Drake, Jr. : -- nosy: +fdrake ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue15120] Different behavior of html.parser.HTMLParser

2012-06-21 Thread R. David Murray
Changes by R. David Murray : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue15120] Different behavior of html.parser.HTMLParser

2012-06-21 Thread hansokumake
New submission from hansokumake : I tried this example from the documentation: from html.parser import HTMLParser class MyHTMLParser(HTMLParser): def handle_starttag(self, tag, attrs): print("Encountered a start tag:", tag) def handle_endtag(self, tag): print("Encountere