[docs] [issue24926] Incorrect Example in HTMLParser.handle_comment(data)

Vineet Kumar Doshi report at bugs.python.org
Mon Aug 24 18:42:46 CEST 2015


New submission from Vineet Kumar Doshi:

Hi,

link : https://docs.python.org/2/library/htmlparser.html#HTMLParser.HTMLParser.handle_comment

Incorrect Line : 

The content of Internet Explorer conditional comments (condcoms) will also be sent to this method, so, for <!--[if IE 9]>IE9-specific content<![endif]-->, this method will receive '[if IE 9]>IE-specific content<![endif]'.

Corrected Line :
The content of Internet Explorer conditional comments (condcoms) will also be sent to this method, so, for <!--[if IE 9]>IE9-specific content<![endif]-->, this method will receive '[if IE 9]>IE9-specific content<![endif]'.

Please correct this mistake in the docs.

Let me know, if it helps.

Thanks

Best Regards

----------
assignee: docs at python
components: Documentation
messages: 249063
nosy: docs at python, vineetkumardoshi
priority: normal
severity: normal
status: open
title: Incorrect Example in HTMLParser.handle_comment(data)
type: behavior
versions: Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue24926>
_______________________________________


More information about the docs mailing list