django.utils.six.moves._html_parser.interesting_cdata

Here are the examples of the python api django.utils.six.moves._html_parser.interesting_cdata taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: GAE-Bulk-Mailer Source File: html_parser.py
Function: set_cdata_mode
        def set_cdata_mode(self, tag):
            try:
                self.interesting = _html_parser.interesting_cdata
            except AttributeError:
                self.interesting = re.compile(r'</\s*%s\s*>' % tag.lower(), re.I)
            self.cdata_tag = tag.lower()