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


Python Keyword.Type方法代码示例

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


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

示例1: test_compiler_directive

# 需要导入模块: from pygments.token import Keyword [as 别名]
# 或者: from pygments.token.Keyword import Type [as 别名]
def test_compiler_directive(lexer):
    fragment = u'%link C "object.o"\n%name Vect xs'
    tokens = [
        (Keyword.Reserved, u'%link'),
        (Text, u' '),
        (Keyword.Type, u'C'),
        (Text, u' '),
        (Literal.String, u'"'),
        (Literal.String, u'object.o'),
        (Literal.String, u'"'),
        (Text, u'\n'),
        (Keyword.Reserved, u'%name'),
        (Text, u' '),
        (Keyword.Type, u'Vect'),
        (Text, u' '),
        (Text, u'xs'),
        (Text, u'\n')
    ]
    assert list(lexer.get_tokens(fragment)) == tokens 
开发者ID:pygments,项目名称:pygments,代码行数:21,代码来源:test_idris.py

示例2: test_reserved_word

# 需要导入模块: from pygments.token import Keyword [as 别名]
# 或者: from pygments.token.Keyword import Type [as 别名]
def test_reserved_word(lexer):
    fragment = u'namespace Foobar\n  links : String\n  links = "abc"'
    tokens = [
        (Keyword.Reserved, u'namespace'),
        (Text, u' '),
        (Keyword.Type, u'Foobar'),
        (Text, u'\n'),
        (Text, u'  '),
        (Name.Function, u'links'),
        (Text, u' '),
        (Operator.Word, u':'),
        (Text, u' '),
        (Keyword.Type, u'String'),
        (Text, u'\n'),
        (Text, u' '),
        (Text, u' '),
        (Text, u'links'),
        (Text, u' '),
        (Operator.Word, u'='),
        (Text, u' '),
        (Literal.String, u'"'),
        (Literal.String, u'abc'),
        (Literal.String, u'"'),
        (Text, u'\n')
    ]
    assert list(lexer.get_tokens(fragment)) == tokens 
开发者ID:pygments,项目名称:pygments,代码行数:28,代码来源:test_idris.py


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