File: test_one

package info (click to toggle)
decompyle 2.3.2-4.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,324 kB
  • ctags: 66,233
  • sloc: python: 70,351; ansic: 2,329; makefile: 43; sh: 14
file content (16 lines) | stat: -rwxr-xr-x 276 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

file=$1
shift
options=$@

BASEDIR=test/bytecode_1.5
#BASEDIR=test/bytecode_2.0
#BASEDIR=test/bytecode_2.1
#BASEDIR=test/bytecode_2.2

if [ `dirname $file` == '.' ] ; then
    file=$BASEDIR/test_$file.pyc
fi

python2 -u ./scripts/decompyle $options $file 2>&1 |less