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


Python unicode_utils.filesys_decode方法代码示例

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


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

示例1: _safe_path

# 需要导入模块: from setuptools import unicode_utils [as 别名]
# 或者: from setuptools.unicode_utils import filesys_decode [as 别名]
def _safe_path(self, path):
        enc_warn = "'%s' not %s encodable -- skipping"

        # To avoid accidental trans-codings errors, first to unicode
        u_path = unicode_utils.filesys_decode(path)
        if u_path is None:
            log.warn("'%s' in unexpected encoding -- skipping" % path)
            return False

        # Must ensure utf-8 encodability
        utf8_path = unicode_utils.try_encode(u_path, "utf-8")
        if utf8_path is None:
            log.warn(enc_warn, path, 'utf-8')
            return False

        try:
            # accept is either way checks out
            if os.path.exists(u_path) or os.path.exists(utf8_path):
                return True
        # this will catch any encode errors decoding u_path
        except UnicodeEncodeError:
            log.warn(enc_warn, path, sys.getfilesystemencoding()) 
开发者ID:jpush,项目名称:jbox,代码行数:24,代码来源:egg_info.py


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