當前位置: 首頁>>代碼示例>>Python>>正文


Python parser.compilest方法代碼示例

本文整理匯總了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) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:test_parser.py

示例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) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:8,代碼來源:test_parser.py

示例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) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:5,代碼來源:test_parser.py

示例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) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:7,代碼來源:test_parser.py

示例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) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:11,代碼來源:test_parser.py

示例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) 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:8,代碼來源:test_parser.py

示例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) 
開發者ID:Microvellum,項目名稱:Fluid-Designer,代碼行數:7,代碼來源:test_parser.py


注:本文中的parser.compilest方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。