Python parser.compilest() Examples
The following are 30
code examples of parser.compilest().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
parser
, or try the search function
.
Example #1
Source File: test_parser.py From ironpython2 with Apache License 2.0 | 6 votes |
def test_compile_expr(self): st = parser.expr('2 + 3') code = parser.compilest(st) self.assertEqual(eval(code), 5)
Example #2
Source File: test_parser.py From medicare-demo with Apache License 2.0 | 5 votes |
def test_compile_suite(self): st = parser.suite('x = 2; y = x + 3') code = parser.compilest(st) globs = {} exec code in globs self.assertEquals(globs['y'], 5)
Example #3
Source File: test_parser.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_compile_expr(self): st = parser.expr('2 + 3') code = parser.compilest(st) self.assertEqual(eval(code), 5)
Example #4
Source File: test_parser.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
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)
Example #5
Source File: test_parser.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_compile_error(self): st = parser.suite('1 = 3 + 4') self.assertRaises(SyntaxError, parser.compilest, st)
Example #6
Source File: test_parser.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
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)
Example #7
Source File: test_parser.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
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)
Example #8
Source File: test_parser.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_compile_expr(self): st = parser.expr('2 + 3') code = parser.compilest(st) self.assertEqual(eval(code), 5)
Example #9
Source File: test_parser.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
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)
Example #10
Source File: test_parser.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_compile_error(self): st = parser.suite('1 = 3 + 4') self.assertRaises(SyntaxError, parser.compilest, st)
Example #11
Source File: test_parser.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
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)
Example #12
Source File: test_parser.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
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)
Example #13
Source File: test_parser.py From medicare-demo with Apache License 2.0 | 5 votes |
def test_compile_expr(self): st = parser.expr('2 + 3') code = parser.compilest(st) self.assertEquals(eval(code), 5)
Example #14
Source File: test_parser.py From ironpython3 with Apache License 2.0 | 5 votes |
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)
Example #15
Source File: test_parser.py From medicare-demo with Apache License 2.0 | 5 votes |
def test_compile_error(self): st = parser.suite('1 = 3 + 4') self.assertRaises(SyntaxError, parser.compilest, st)
Example #16
Source File: test_parser.py From CTFCrackTools-V2 with GNU General Public License v3.0 | 5 votes |
def test_compile_expr(self): st = parser.expr('2 + 3') code = parser.compilest(st) self.assertEqual(eval(code), 5)
Example #17
Source File: test_parser.py From CTFCrackTools-V2 with GNU General Public License v3.0 | 5 votes |
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)
Example #18
Source File: test_parser.py From CTFCrackTools-V2 with GNU General Public License v3.0 | 5 votes |
def test_compile_error(self): st = parser.suite('1 = 3 + 4') self.assertRaises(SyntaxError, parser.compilest, st)
Example #19
Source File: test_parser.py From CTFCrackTools-V2 with GNU General Public License v3.0 | 5 votes |
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)
Example #20
Source File: test_parser.py From CTFCrackTools-V2 with GNU General Public License v3.0 | 5 votes |
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)
Example #21
Source File: test_parser.py From CTFCrackTools with GNU General Public License v3.0 | 5 votes |
def test_compile_expr(self): st = parser.expr('2 + 3') code = parser.compilest(st) self.assertEqual(eval(code), 5)
Example #22
Source File: test_parser.py From CTFCrackTools with GNU General Public License v3.0 | 5 votes |
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)
Example #23
Source File: test_parser.py From CTFCrackTools with GNU General Public License v3.0 | 5 votes |
def test_compile_error(self): st = parser.suite('1 = 3 + 4') self.assertRaises(SyntaxError, parser.compilest, st)
Example #24
Source File: test_parser.py From CTFCrackTools with GNU General Public License v3.0 | 5 votes |
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)
Example #25
Source File: test_parser.py From CTFCrackTools with GNU General Public License v3.0 | 5 votes |
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)
Example #26
Source File: test_parser.py From oss-ftp with MIT License | 5 votes |
def test_compile_error(self): st = parser.suite('1 = 3 + 4') self.assertRaises(SyntaxError, parser.compilest, st)
Example #27
Source File: test_parser.py From ironpython2 with Apache License 2.0 | 5 votes |
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)
Example #28
Source File: test_parser.py From ironpython2 with Apache License 2.0 | 5 votes |
def test_compile_error(self): st = parser.suite('1 = 3 + 4') self.assertRaises(SyntaxError, parser.compilest, st)
Example #29
Source File: test_parser.py From ironpython2 with Apache License 2.0 | 5 votes |
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)
Example #30
Source File: test_parser.py From ironpython2 with Apache License 2.0 | 5 votes |
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)