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


Python token.Literal方法代码示例

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


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

示例1: header_callback

# 需要导入模块: from pygments import token [as 别名]
# 或者: from pygments.token import Literal [as 别名]
def header_callback(self, match):
        if match.group(1).lower() == 'content-type':
            content_type = match.group(5).strip()
            if ';' in content_type:
                content_type = content_type[:content_type.find(';')].strip()
            self.content_type = content_type
        yield match.start(1), Name.Attribute, match.group(1)
        yield match.start(2), Text, match.group(2)
        yield match.start(3), Operator, match.group(3)
        yield match.start(4), Text, match.group(4)
        yield match.start(5), Literal, match.group(5)
        yield match.start(6), Text, match.group(6) 
开发者ID:preems,项目名称:nltk-server,代码行数:14,代码来源:httpdomain.py

示例2: continuous_header_callback

# 需要导入模块: from pygments import token [as 别名]
# 或者: from pygments.token import Literal [as 别名]
def continuous_header_callback(self, match):
        yield match.start(1), Text, match.group(1)
        yield match.start(2), Literal, match.group(2)
        yield match.start(3), Text, match.group(3) 
开发者ID:preems,项目名称:nltk-server,代码行数:6,代码来源:httpdomain.py

示例3: header_callback

# 需要导入模块: from pygments import token [as 别名]
# 或者: from pygments.token import Literal [as 别名]
def header_callback(self, match):
        if match.group(1).lower() == "content-type":
            content_type = match.group(5).strip()
            if ";" in content_type:
                content_type = content_type[: content_type.find(";")].strip()
            self.content_type = content_type
        yield match.start(1), Name.Attribute, match.group(1)
        yield match.start(2), Text, match.group(2)
        yield match.start(3), Operator, match.group(3)
        yield match.start(4), Text, match.group(4)
        yield match.start(5), Literal, match.group(5)
        yield match.start(6), Text, match.group(6) 
开发者ID:apache,项目名称:couchdb-documentation,代码行数:14,代码来源:httpdomain.py

示例4: test_tokentype

# 需要导入模块: from pygments import token [as 别名]
# 或者: from pygments.token import Literal [as 别名]
def test_tokentype():
    t = token.String
    assert t.split() == [token.Token, token.Literal, token.String]
    assert t.__class__ is token._TokenType 
开发者ID:pygments,项目名称:pygments,代码行数:6,代码来源:test_token.py

示例5: test_functions

# 需要导入模块: from pygments import token [as 别名]
# 或者: from pygments.token import Literal [as 别名]
def test_functions():
    assert token.is_token_subtype(token.String, token.String)
    assert token.is_token_subtype(token.String, token.Literal)
    assert not token.is_token_subtype(token.Literal, token.String)

    assert token.string_to_tokentype(token.String) is token.String
    assert token.string_to_tokentype('') is token.Token
    assert token.string_to_tokentype('String') is token.String 
开发者ID:pygments,项目名称:pygments,代码行数:10,代码来源:test_token.py


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