Apparently the code to forestall Tk eating events was too aggressive (Tk user input...
[python/dscho.git] / Lib / test / output / test_grammar
blob5d0c17707dd91ccc713a3d78b4037d9c226a8123
1 test_grammar
2 1. Parser
3 1.1 Tokens
4 1.1.1 Backslashes
5 1.1.2 Numeric literals
6 1.1.2.1 Plain integers
7 1.1.2.2 Long integers
8 1.1.2.3 Floating point
9 1.1.3 String literals
10 1.2 Grammar
11 single_input
12 file_input
13 expr_input
14 eval_input
15 funcdef
16 lambdef
17 simple_stmt
18 expr_stmt
19 print_stmt
20 1 2 3
21 1 2 3
22 1 1 1
23 extended print_stmt
24 1 2 3
25 1 2 3
26 1 1 1
27 hello world
28 del_stmt
29 pass_stmt
30 flow_stmt
31 break_stmt
32 continue_stmt
33 continue + try/except ok
34 continue + try/finally ok
35 return_stmt
36 raise_stmt
37 import_stmt
38 global_stmt
39 exec_stmt
40 assert_stmt
41 if_stmt
42 while_stmt
43 for_stmt
44 try_stmt
45 suite
46 test
47 comparison
48 binary mask ops
49 shift ops
50 additive ops
51 multiplicative ops
52 unary ops
53 selectors
55 atoms
56 classdef
57 ['Apple', 'Banana', 'Coco  nut']
58 [3, 6, 9, 12, 15]
59 [3, 4, 5]
60 [(1, 'Apple'), (1, 'Banana'), (1, 'Coconut'), (2, 'Apple'), (2, 'Banana'), (2, 'Coconut'), (3, 'Apple'), (3, 'Banana'), (3, 'Coconut'), (4, 'Apple'), (4, 'Banana'), (4, 'Coconut'), (5, 'Apple'), (5, 'Banana'), (5, 'Coconut')]
61 [(1, 'Banana'), (1, 'Coconut'), (2, 'Banana'), (2, 'Coconut'), (3, 'Banana'), (3, 'Coconut'), (4, 'Banana'), (4, 'Coconut'), (5, 'Banana'), (5, 'Coconut')]
62 [0, 0, 0]
63 [[1, 2], [3, 4], [5, 6]]
64 [('Boeing', 'Airliner'), ('Boeing', 'Engine'), ('Ford', 'Engine'), ('Macdonalds', 'Cheeseburger')]