diff options
author | 2005-10-31 17:18:16 +0000 | |
---|---|---|
committer | 2005-10-31 17:18:16 +0000 | |
commit | 09aa8062756f278d2850a1285ef21a3e251f2cfa (patch) | |
tree | b3bfbc6bcef393ee71f1f5ae0b6745e07c170906 /demo | |
parent | genreportdata.py marked executable but missing the #! line (diff) | |
download | pypy-09aa8062756f278d2850a1285ef21a3e251f2cfa.tar.gz pypy-09aa8062756f278d2850a1285ef21a3e251f2cfa.tar.bz2 pypy-09aa8062756f278d2850a1285ef21a3e251f2cfa.zip |
Fixed the #! line.
Diffstat (limited to 'demo')
-rwxr-xr-x | demo/bpnn.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/demo/bpnn.py b/demo/bpnn.py index 5278942472..24a2b3984b 100755 --- a/demo/bpnn.py +++ b/demo/bpnn.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python """ Translator Demo @@ -190,6 +190,7 @@ if __name__ == '__main__': print 'Annotating...' a = t.annotate([]) a.simplify() + t.viewcg() print 'Specializing...' t.specialize() # enable this to see (some) lower-level Cish operations |