本文整理汇总了Python中parser.compilest方法的典型用法代码示例。如果您正苦于以下问题:Python parser.compilest方法的具体用法?Python parser.compilest怎么用?Python parser.compilest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类parser
的用法示例。
在下文中一共展示了parser.compilest方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_compile_expr
# 需要导入模块: import parser [as 别名]
# 或者: from parser import compilest [as 别名]
def test_compile_expr(self):
st = parser.expr('2 + 3')
code = parser.compilest(st)
self.assertEqual(eval(code), 5)
示例2: test_compile_suite
# 需要导入模块: import parser [as 别名]
# 或者: from parser import compilest [as 别名]
def test_compile_suite(self):
st = parser.suite('x = 2; y = x + 3')
code = parser.compilest(st)
globs = {}
exec code in globs
self.assertEqual(globs['y'], 5)
示例3: test_compile_error
# 需要导入模块: import parser [as 别名]
# 或者: from parser import compilest [as 别名]
def test_compile_error(self):
st = parser.suite('1 = 3 + 4')
self.assertRaises(SyntaxError, parser.compilest, st)
示例4: test_compile_badunicode
# 需要导入模块: import parser [as 别名]
# 或者: from parser import compilest [as 别名]
def test_compile_badunicode(self):
st = parser.suite('a = u"\U12345678"')
self.assertRaises(SyntaxError, parser.compilest, st)
st = parser.suite('a = u"\u1"')
self.assertRaises(SyntaxError, parser.compilest, st)
示例5: test_issue_9011
# 需要导入模块: import parser [as 别名]
# 或者: from parser import compilest [as 别名]
def test_issue_9011(self):
# Issue 9011: compilation of an unary minus expression changed
# the meaning of the ST, so that a second compilation produced
# incorrect results.
st = parser.expr('-3')
code1 = parser.compilest(st)
self.assertEqual(eval(code1), -3)
code2 = parser.compilest(st)
self.assertEqual(eval(code2), -3)
示例6: test_compile_suite
# 需要导入模块: import parser [as 别名]
# 或者: from parser import compilest [as 别名]
def test_compile_suite(self):
st = parser.suite('x = 2; y = x + 3')
code = parser.compilest(st)
globs = {}
exec(code, globs)
self.assertEqual(globs['y'], 5)
示例7: test_compile_badunicode
# 需要导入模块: import parser [as 别名]
# 或者: from parser import compilest [as 别名]
def test_compile_badunicode(self):
st = parser.suite('a = "\\U12345678"')
self.assertRaises(SyntaxError, parser.compilest, st)
st = parser.suite('a = "\\u1"')
self.assertRaises(SyntaxError, parser.compilest, st)