本文整理汇总了Python中pypackage.config.Config.use_2to3方法的典型用法代码示例。如果您正苦于以下问题:Python Config.use_2to3方法的具体用法?Python Config.use_2to3怎么用?Python Config.use_2to3使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pypackage.config.Config
的用法示例。
在下文中一共展示了Config.use_2to3方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_extended_attributes__re_config
# 需要导入模块: from pypackage.config import Config [as 别名]
# 或者: from pypackage.config.Config import use_2to3 [as 别名]
def test_extended_attributes__re_config(reset_sys_argv):
"""If --rebuild is used, all extended attributes should be unconfigured."""
conf = Config()
conf.use_2to3 = True
sys.argv = ["py-build", "-r"]
attrs = configure.extended_attributes(conf, get_options())
expected = list(conf._KEYS.keys())[conf._STD_TO_EXTD_INDEX:]
assert attrs == expected
示例2: test_extended_attributes
# 需要导入模块: from pypackage.config import Config [as 别名]
# 或者: from pypackage.config.Config import use_2to3 [as 别名]
def test_extended_attributes(reset_sys_argv, move_home_pypackage):
"""Extended attributes should return unset keys past _STD_TO_EXTD_INDEX."""
conf = Config()
expected = list(conf._KEYS.keys())[conf._STD_TO_EXTD_INDEX:]
conf.use_2to3 = True
expected.remove("use_2to3")
attrs = configure.extended_attributes(conf, get_options())
assert attrs == expected