本文整理匯總了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)