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


Python compat.text_type方法代码示例

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


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

示例1: escape

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def escape(self, text):
        """Replace characters with their character references.

        Replace characters by their named entity references.
        Non-ASCII characters, if they do not have a named entity reference,
        are replaced by numerical character references.

        The return value is guaranteed to be ASCII.
        """
        return self.__escapable.sub(
            self.__escape, compat.text_type(text)
        ).encode("ascii")

    # XXX: This regexp will not match all valid XML entity names__.
    # (It punts on details involving involving CombiningChars and Extenders.)
    #
    # .. __: http://www.w3.org/TR/2000/REC-xml-20001006#NT-EntityRef 
开发者ID:remg427,项目名称:misp42splunk,代码行数:19,代码来源:filters.py

示例2: source

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def source(self):
        if self.template_source is not None:
            if self.module._source_encoding and not isinstance(
                self.template_source, compat.text_type
            ):
                return self.template_source.decode(
                    self.module._source_encoding
                )
            else:
                return self.template_source
        else:
            data = util.read_file(self.template_filename)
            if self.module._source_encoding:
                return data.decode(self.module._source_encoding)
            else:
                return data 
开发者ID:remg427,项目名称:misp42splunk,代码行数:18,代码来源:template.py

示例3: _compile_text

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def _compile_text(template, text, filename):
    identifier = template.module_id
    source, lexer = _compile(
        template,
        text,
        filename,
        generate_magic_comment=template.disable_unicode,
    )

    cid = identifier
    if not compat.py3k and isinstance(cid, compat.text_type):
        cid = cid.encode()
    module = types.ModuleType(cid)
    code = compile(source, cid, "exec")

    # this exec() works for 2.4->3.3.
    exec(code, module.__dict__, module.__dict__)
    return (source, module) 
开发者ID:remg427,项目名称:misp42splunk,代码行数:20,代码来源:template.py

示例4: _compile_module_file

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def _compile_module_file(template, text, filename, outputpath, module_writer):
    source, lexer = _compile(
        template, text, filename, generate_magic_comment=True
    )

    if isinstance(source, compat.text_type):
        source = source.encode(lexer.encoding or "ascii")

    if module_writer:
        module_writer(source, outputpath)
    else:
        # make tempfiles in the same location as the ultimate
        # location.   this ensures they're on the same filesystem,
        # avoiding synchronization issues.
        (dest, name) = tempfile.mkstemp(dir=os.path.dirname(outputpath))

        os.write(dest, source)
        os.close(dest)
        shutil.move(name, outputpath) 
开发者ID:remg427,项目名称:misp42splunk,代码行数:21,代码来源:template.py

示例5: htmlentityreplace_errors

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def htmlentityreplace_errors(ex):
    """An encoding error handler.

    This python codecs error handler replaces unencodable
    characters with HTML entities, or, if no HTML entity exists for
    the character, XML character references::

        >>> u'The cost was \u20ac12.'.encode('latin1', 'htmlentityreplace')
        'The cost was €12.'
    """
    if isinstance(ex, UnicodeEncodeError):
        # Handle encoding errors
        bad_text = ex.object[ex.start : ex.end]
        text = _html_entities_escaper.escape(bad_text)
        return (compat.text_type(text), ex.end)
    raise ex 
开发者ID:remg427,项目名称:misp42splunk,代码行数:18,代码来源:filters.py

示例6: escape

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def escape(self, text):
        """Replace characters with their character references.

        Replace characters by their named entity references.
        Non-ASCII characters, if they do not have a named entity reference,
        are replaced by numerical character references.

        The return value is guaranteed to be ASCII.
        """
        return self.__escapable.sub(self.__escape, compat.text_type(text)
                                    ).encode('ascii')

    # XXX: This regexp will not match all valid XML entity names__.
    # (It punts on details involving involving CombiningChars and Extenders.)
    #
    # .. __: http://www.w3.org/TR/2000/REC-xml-20001006#NT-EntityRef 
开发者ID:jpush,项目名称:jbox,代码行数:18,代码来源:filters.py

示例7: _compile_module_file

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def _compile_module_file(template, text, filename, outputpath, module_writer):
    source, lexer = _compile(template, text, filename,
                             generate_magic_comment=True)

    if isinstance(source, compat.text_type):
        source = source.encode(lexer.encoding or 'ascii')

    if module_writer:
        module_writer(source, outputpath)
    else:
        # make tempfiles in the same location as the ultimate
        # location.   this ensures they're on the same filesystem,
        # avoiding synchronization issues.
        (dest, name) = tempfile.mkstemp(dir=os.path.dirname(outputpath))

        os.write(dest, source)
        os.close(dest)
        shutil.move(name, outputpath) 
开发者ID:jpush,项目名称:jbox,代码行数:20,代码来源:template.py

示例8: _init_message

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def _init_message(self):
        """Find a unicode representation of self.error"""
        try:
            self.message = compat.text_type(self.error)
        except UnicodeError:
            try:
                self.message = str(self.error)
            except UnicodeEncodeError:
                # Fallback to args as neither unicode nor
                # str(Exception(u'\xe6')) work in Python < 2.6
                self.message = self.error.args[0]
        if not isinstance(self.message, compat.text_type):
            self.message = compat.text_type(self.message, "ascii", "replace") 
开发者ID:remg427,项目名称:misp42splunk,代码行数:15,代码来源:exceptions.py

示例9: __getattr__

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import text_type [as 别名]
def __getattr__(self, key):
        def decode(x):
            if isinstance(x, compat.text_type):
                return x
            elif not isinstance(x, compat.binary_type):
                return decode(str(x))
            else:
                return compat.text_type(x, encoding=key)

        return decode 
开发者ID:remg427,项目名称:misp42splunk,代码行数:12,代码来源:filters.py


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