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@python
components: Documentation
messages: 249063
nosy: docs@python, vineetkumardoshi
priority: normal
severity: normal
status: open
title: Incorrect Example in HTMLParser.handle_comment(data)
type: behavior
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24926>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to