Ejemplo n.º 1
0
 def __init__(self, **options):
     self._reset_stringescapes()
     ExtendedRegexLexer.__init__(self, **options)
Ejemplo n.º 2
0
 def get_tokens_unprocessed(self, text=None, context=None):
     self._reset_stringescapes()
     return ExtendedRegexLexer.get_tokens_unprocessed(self, text, context)
Ejemplo n.º 3
0
Archivo: dsls.py Proyecto: axil/blog
 def get_tokens_unprocessed(self, text=None, context=None):
     self._reset_stringescapes()
     return ExtendedRegexLexer.get_tokens_unprocessed(self, text, context)
Ejemplo n.º 4
0
Archivo: dsls.py Proyecto: axil/blog
 def __init__(self, **options):
     self._reset_stringescapes()
     ExtendedRegexLexer.__init__(self, **options)
Ejemplo n.º 5
0
 def get_tokens_unprocessed(self, text=None, context=None):
     ctx = LexerContext(text, 0)
     ctx.indent = 0
     return ExtendedRegexLexer.get_tokens_unprocessed(self,
                                                      text,
                                                      context=ctx)
Ejemplo n.º 6
0
 def get_tokens_unprocessed(self, text=None, context=None):
     ctx = LexerContext(text, 0)
     ctx.indent = 0
     return ExtendedRegexLexer.get_tokens_unprocessed(self, text, context=ctx)