本文整理汇总了Python中kiwi.defaults.Defaults.set_python_default_encoding_to_utf8方法的典型用法代码示例。如果您正苦于以下问题:Python Defaults.set_python_default_encoding_to_utf8方法的具体用法?Python Defaults.set_python_default_encoding_to_utf8怎么用?Python Defaults.set_python_default_encoding_to_utf8使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kiwi.defaults.Defaults
的用法示例。
在下文中一共展示了Defaults.set_python_default_encoding_to_utf8方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create
# 需要导入模块: from kiwi.defaults import Defaults [as 别名]
# 或者: from kiwi.defaults.Defaults import set_python_default_encoding_to_utf8 [as 别名]
def create(self):
"""
Create bash quoted profile
:return: profile dump for bash
:rtype: str
"""
Defaults.set_python_default_encoding_to_utf8()
sorted_profile = collections.OrderedDict(
sorted(self.dot_profile.items())
)
temp_profile = NamedTemporaryFile()
with open(temp_profile.name, 'w') as profile:
for key, value in list(sorted_profile.items()):
if value:
profile.write(
format(key) + '=' + self._format(value) + '\n'
)
return Shell.quote_key_value_file(temp_profile.name)
示例2: test_set_python_default_encoding_to_utf8
# 需要导入模块: from kiwi.defaults import Defaults [as 别名]
# 或者: from kiwi.defaults.Defaults import set_python_default_encoding_to_utf8 [as 别名]
def test_set_python_default_encoding_to_utf8(self, mock_reload, mock_sys):
mock_sys.version_info.major = 2
Defaults.set_python_default_encoding_to_utf8()
mock_reload.assert_called_once_with(mock_sys)
mock_sys.setdefaultencoding.assert_called_once_with('utf-8')