mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-30 08:30:50 +00:00
Regularize test names.
This commit is contained in:
parent
1456f820f2
commit
d75083c9db
@ -1 +0,0 @@
|
||||
a = b and c
|
@ -1 +0,0 @@
|
||||
a = b and c or d
|
@ -1 +0,0 @@
|
||||
a = (b or c) and d
|
@ -1 +0,0 @@
|
||||
a = b or c or d
|
4
test/simple_source/exception/01_try_except.py
Normal file
4
test/simple_source/exception/01_try_except.py
Normal file
@ -0,0 +1,4 @@
|
||||
try:
|
||||
x = 1
|
||||
except:
|
||||
pass
|
1
test/simple_source/operation_logic/or.py
Normal file
1
test/simple_source/operation_logic/or.py
Normal file
@ -0,0 +1 @@
|
||||
a = b or c
|
1
test/simple_source/operation_unary/invert.py
Normal file
1
test/simple_source/operation_unary/invert.py
Normal file
@ -0,0 +1 @@
|
||||
a = ~b
|
1
test/simple_source/operation_unary/iter.py
Normal file
1
test/simple_source/operation_unary/iter.py
Normal file
@ -0,0 +1 @@
|
||||
a = iter(b)
|
1
test/simple_source/operation_unary/negative.py
Normal file
1
test/simple_source/operation_unary/negative.py
Normal file
@ -0,0 +1 @@
|
||||
a = -b
|
1
test/simple_source/operation_unary/not.py
Normal file
1
test/simple_source/operation_unary/not.py
Normal file
@ -0,0 +1 @@
|
||||
a = not b
|
1
test/simple_source/operation_unary/positive.py
Normal file
1
test/simple_source/operation_unary/positive.py
Normal file
@ -0,0 +1 @@
|
||||
a = +b
|
Loading…
Reference in New Issue
Block a user