In a directory I have three files.
- test.py, containing
print "Hello World"
- python_runner.bat, containing
python test.py PAUSE
- jython_runner.bat, containing
jython test.py PAUSE
The python_runner.bat works as expected, but running Jython_runner.bat causes the PAUSE command to be skipped!
Why is Jython causing the batch script to be prematurely terminated?
(NOTE: I am using Jython2.7b4, I haven't tried with Jython 2.5)