Searched refs:matchobj (Results 1 – 2 of 2) sorted by relevance
77 def InsertScriptAfter(matchobj): argument78 return '%s<script>%s</script>' % (matchobj.group(0), script_to_inject)
88 def _substitute_html_entity(cls, matchobj): argument89 entity = cls.CHARACTER_TO_HTML_ENTITY.get(matchobj.group(0))93 def _substitute_xml_entity(cls, matchobj): argument96 entity = cls.CHARACTER_TO_XML_ENTITY[matchobj.group(0)]