mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 21:20:06 +00:00
9 lines
204 B
Plaintext
9 lines
204 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
for ver in 1.4 1.5 1.6 2 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7; do
|
||
|
which python$ver > /dev/null 2>&1 && \
|
||
|
( python$ver test/compile_tests
|
||
|
python$ver -O test/compile_tests
|
||
|
)
|
||
|
done
|