You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Regularize test names.
This commit is contained in:
@@ -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
|
Reference in New Issue
Block a user