本文整理汇总了Python中distutils.dist.PKG_INFO_ENCODING属性的典型用法代码示例。如果您正苦于以下问题:Python dist.PKG_INFO_ENCODING属性的具体用法?Python dist.PKG_INFO_ENCODING怎么用?Python dist.PKG_INFO_ENCODING使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类distutils.dist
的用法示例。
在下文中一共展示了dist.PKG_INFO_ENCODING属性的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: check_restructuredtext
# 需要导入模块: from distutils import dist [as 别名]
# 或者: from distutils.dist import PKG_INFO_ENCODING [as 别名]
def check_restructuredtext(self):
"""Checks if the long string fields are reST-compliant."""
data = self.distribution.get_long_description()
if not isinstance(data, unicode):
data = data.decode(PKG_INFO_ENCODING)
for warning in self._check_rst_data(data):
line = warning[-1].get('line')
if line is None:
warning = warning[1]
else:
warning = '%s (line %s)' % (warning[1], line)
self.warn(warning)