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 pysean
Recipients pysean
Date 2013-01-14.12:54:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358168055.33.0.344614733443.issue16963@psf.upfronthosting.co.za>
In-reply-to
Content
NOTE: SAME AS Python 3.2.2, Python 3.3 from python.org/download

Python 3.2.2 Stackless 3.1b3 060516 (default, Feb 20 2012, 13:36:12) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> from html.parser import HTMLParser
>>> class LooseParser(HTMLParser):
	def __init__(self, strict=False):
		HTMLParser.__init__(self, strict=strict)
	def handle_starttag(self, tag, attrs):
		print('Tag:', tag)

		
>>> p = LooseParser()
>>> p.feed('<p>hello</p>')
>>>
History
Date User Action Args
2013-01-14 12:54:15pyseansetrecipients: + pysean
2013-01-14 12:54:15pyseansetmessageid: <1358168055.33.0.344614733443.issue16963@psf.upfronthosting.co.za>
2013-01-14 12:54:15pyseanlinkissue16963 messages
2013-01-14 12:54:14pyseancreate