You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
Add spark option to show grammer. Revise uncompyle options. Start to reorganize
tests more
This commit is contained in:
12
test/simple_source/operation_logic/10_mixed_boolean.py
Normal file
12
test/simple_source/operation_logic/10_mixed_boolean.py
Normal 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
|
Reference in New Issue
Block a user