Add spark option to show grammer. Revise uncompyle options. Start to reorganize

tests more
This commit is contained in:
rocky
2015-12-22 03:54:17 -05:00
parent d3d375d954
commit 4f0fe90eef
67 changed files with 137 additions and 57 deletions

View File

@@ -0,0 +1,12 @@
b = True
c = False
d = True
a = b and c or d
a = (b or c) and d
a = b or c or d
a = b and c and d
a = b or c and d
a = b and (c or d)
a = b and c or d
a = (b or c and d) and b
a = (b or c and d or a) and b