本文整理汇总了Python中test.badsyntax_future5方法的典型用法代码示例。如果您正苦于以下问题:Python test.badsyntax_future5方法的具体用法?Python test.badsyntax_future5怎么用?Python test.badsyntax_future5使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类test
的用法示例。
在下文中一共展示了test.badsyntax_future5方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_badfuture5
# 需要导入模块: import test [as 别名]
# 或者: from test import badsyntax_future5 [as 别名]
def test_badfuture5(self):
try:
from test import badsyntax_future5
except SyntaxError, msg:
self.assertEqual(get_error_location(msg), ("badsyntax_future5", '4'))
示例2: test_badfuture5
# 需要导入模块: import test [as 别名]
# 或者: from test import badsyntax_future5 [as 别名]
def test_badfuture5(self):
try:
from test import badsyntax_future5
except SyntaxError as msg:
self.assertEqual(get_error_location(msg), ("badsyntax_future5", '4'))
else:
self.fail("expected exception didn't occur")
示例3: test_badfuture5
# 需要导入模块: import test [as 别名]
# 或者: from test import badsyntax_future5 [as 别名]
def test_badfuture5(self):
with self.assertRaises(SyntaxError) as cm:
from test import badsyntax_future5
self.check_syntax_error(cm.exception, "badsyntax_future5", 4)