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


Python Name.Attribute方法代码示例

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


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

示例1: header_callback

# 需要导入模块: from pygments.token import Name [as 别名]
# 或者: from pygments.token.Name import Attribute [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: header_callback

# 需要导入模块: from pygments.token import Name [as 别名]
# 或者: from pygments.token.Name import Attribute [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

示例3: get_content_type_subtokens

# 需要导入模块: from pygments.token import Name [as 别名]
# 或者: from pygments.token.Name import Attribute [as 别名]
def get_content_type_subtokens(self, match):
        yield match.start(1), Text, match.group(1)
        yield match.start(2), Text.Whitespace, match.group(2)
        yield match.start(3), Name.Attribute, match.group(3)
        yield match.start(4), Operator, match.group(4)
        yield match.start(5), String, match.group(5)

        if match.group(3).lower() == "boundary":
            boundary = match.group(5).strip()
            if boundary[0] == '"' and boundary[-1] == '"':
                boundary = boundary[1:-1]
            self.boundary = boundary 
开发者ID:pygments,项目名称:pygments,代码行数:14,代码来源:mime.py


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