本文整理汇总了Python中TestSCons.deprecated_python_version方法的典型用法代码示例。如果您正苦于以下问题:Python TestSCons.deprecated_python_version方法的具体用法?Python TestSCons.deprecated_python_version怎么用?Python TestSCons.deprecated_python_version使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestSCons
的用法示例。
在下文中一共展示了TestSCons.deprecated_python_version方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1:
# 需要导入模块: import TestSCons [as 别名]
# 或者: from TestSCons import deprecated_python_version [as 别名]
test.write('SConstruct', "\n")
test.write('SetOption-deprecated', "SetOption('warn', 'no-deprecated')\n")
test.write('SetOption-python', "SetOption('warn', ['no-python-version'])\n")
if TestSCons.unsupported_python_version():
error = "scons: \*\*\* SCons version \S+ does not run under Python version %s."
error = error % re.escape(TestSCons.python_version_string()) + "\n"
test.run(arguments = '-Q', status = 1, stderr = error)
else:
if TestSCons.deprecated_python_version():
test.run(arguments = '-Q', stderr = TestSCons.deprecated_python_expr)
else:
test.run(arguments = '-Q')
test.run(arguments = '-Q --warn=no-deprecated')
test.run(arguments = '-f SetOption-deprecated -Q')
test.run(arguments = '-f SetOption-python -Q')
test.pass_test()