You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
Keep optype info in token...
It is useful for ADD_VALUE
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
SKIP_TESTS=(
|
||||
[test_ast.py]=1 # FIXME: Works on c90ff51
|
||||
[test_cmath.py]=1 # FIXME: Works on c90ff51
|
||||
[test_cmath.py]=1 # fails on its own
|
||||
[test_format.py]=1 # FIXME: Works on c90ff51
|
||||
[test_ftplib.py]=1 # FIXME: Works on c90ff51
|
||||
[test_slice.py]=1 # FIXME: Works on c90ff51
|
||||
|
@@ -36,7 +36,7 @@ SKIP_TESTS=(
|
||||
[test_bdb.py]=1 #
|
||||
[test_buffer.py]=1 # parse error
|
||||
[test_clinic.py]=1 # it fails on its own
|
||||
[test_cmath.py]=1 # test assertion failure
|
||||
[test_cmath.py]=pytest
|
||||
[test_cmd_line.py]=1 # Interactive?
|
||||
[test_cmd_line_script.py]=1
|
||||
[test_compileall.py]=1 # fails on its own
|
||||
|
@@ -69,7 +69,7 @@ SKIP_TESTS=(
|
||||
[test_cgi.py]=1 # parse error
|
||||
[test_cgitb.py]=1 # parse error
|
||||
[test_clinic.py]=1 # it fails on its own
|
||||
[test_cmath.py]=1 # test assertion failure
|
||||
[test_cmath.py]=pytest
|
||||
[test_cmd.py]=1 # parse error
|
||||
[test_cmd_line.py]=1 # Interactive?
|
||||
[test_cmd_line_script.py]=1
|
||||
|
@@ -189,7 +189,7 @@ if [[ -n $1 ]] ; then
|
||||
if (( ${#files_ary[@]} == 1 || DONT_SKIP_TESTS == 1 )) ; then
|
||||
for file in $files; do
|
||||
if (( SKIP_TESTS[$file] != "pytest" )); then
|
||||
SKIP_TESTS[$file] = 1;
|
||||
SKIP_TESTS[$file]=1;
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
Reference in New Issue
Block a user