当前位置: 首页>>代码示例>>Python>>正文


Python Lexer.__init__方法代码示例

本文整理汇总了Python中pygments.lexer.Lexer.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Lexer.__init__方法的具体用法?Python Lexer.__init__怎么用?Python Lexer.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pygments.lexer.Lexer的用法示例。


在下文中一共展示了Lexer.__init__方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
    def __init__(self, **options):
        self.python3 = get_bool_opt(options, 'python3', False)
        if self.python3:
            self.aliases = ['ipy3']
        else:
            self.aliases = ['ipy2', 'ipy']

        Lexer.__init__(self, **options)

        self.IPythonLexer = IPythonLexer(**options)
        self.IPythonConsoleLexer = IPythonConsoleLexer(**options)
开发者ID:PKpacheco,项目名称:monitor-dollar-value-galicia,代码行数:13,代码来源:lexers.py

示例2: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, **options):
     Lexer.__init__(self, **options)
     self.keywords = set()
     if get_bool_opt(options, 'turbopascal', True):
         self.keywords.update(self.TURBO_PASCAL_KEYWORDS)
     if get_bool_opt(options, 'delphi', True):
         self.keywords.update(self.DELPHI_KEYWORDS)
     if get_bool_opt(options, 'freepascal', True):
         self.keywords.update(self.FREE_PASCAL_KEYWORDS)
     self.builtins = set()
     for unit in get_list_opt(options, 'units', list(self.BUILTIN_UNITS)):
         self.builtins.update(self.BUILTIN_UNITS[unit])
开发者ID:2015E8014661092,项目名称:jinjaysnow.github.io,代码行数:14,代码来源:pascal.py

示例3: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, **options):
     self.compress = get_choice_opt(options, 'compress',
                                    ['', 'none', 'gz', 'bz2'], '')
     Lexer.__init__(self, **options)
开发者ID:Ellun,项目名称:nomnom,代码行数:6,代码来源:special.py

示例4: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, baselexer, **options):
     self.baselexer = baselexer
     Lexer.__init__(self, **options)
开发者ID:spencerlyon2,项目名称:pygments,代码行数:5,代码来源:haskell.py

示例5: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, **options):
     options['tabsize'] = 2
     options['encoding'] = 'UTF-8'
     Lexer.__init__(self, **options)
开发者ID:0xDEC0DE8,项目名称:diaphora,代码行数:6,代码来源:robotframework.py

示例6: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, **options):
     self.python3 = get_bool_opt(options, 'python3', False)
     Lexer.__init__(self, **options)
开发者ID:bkerler,项目名称:PythonQt,代码行数:5,代码来源:python.py

示例7: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, left, right, lang, **options):
     self.left = left
     self.right = right
     self.lang = lang
     Lexer.__init__(self, **options)
开发者ID:evacchi,项目名称:lecturer-playground,代码行数:7,代码来源:plaintex.py

示例8: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, **options):
     self.compress = get_choice_opt(options, "compress", ["", "none", "gz", "bz2"], "")
     Lexer.__init__(self, **options)
开发者ID:alfonsodiecko,项目名称:PYTHON_DIST,代码行数:5,代码来源:special.py

示例9: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self):
     Lexer.__init__(self, tabsize=2, encoding='UTF-8')
开发者ID:HelioGuilherme66,项目名称:RIDE,代码行数:4,代码来源:robotframeworklexer.py

示例10: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, **options):
     from pygments.lexers.agile import RubyLexer
     self.ruby_lexer = RubyLexer(**options)
     Lexer.__init__(self, **options)
开发者ID:Mekyi,项目名称:crunchy,代码行数:6,代码来源:templates.py

示例11: __init__

# 需要导入模块: from pygments.lexer import Lexer [as 别名]
# 或者: from pygments.lexer.Lexer import __init__ [as 别名]
 def __init__(self, **options):
     self.options = options
     Lexer.__init__(self, **options)
开发者ID:linsam,项目名称:mailnex,代码行数:5,代码来源:cmdprompt.py


注:本文中的pygments.lexer.Lexer.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。