[pypy-svn] r19275 - pypy/dist/demo

arigo at codespeak.net arigo at codespeak.net
Mon Oct 31 18:18:19 CET 2005


Author: arigo
Date: Mon Oct 31 18:18:16 2005
New Revision: 19275

Modified:
   pypy/dist/demo/bpnn.py
Log:
Fixed the #! line.


Modified: pypy/dist/demo/bpnn.py
==============================================================================
--- pypy/dist/demo/bpnn.py	(original)
+++ pypy/dist/demo/bpnn.py	Mon Oct 31 18:18:16 2005
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/env python
 """
     Translator Demo
 
@@ -190,6 +190,7 @@
     print 'Annotating...'
     a = t.annotate([])
     a.simplify()
+    t.viewcg()
 
     print 'Specializing...'
     t.specialize()   # enable this to see (some) lower-level Cish operations



More information about the Pypy-commit mailing list