Message8026

Author santa4nt
Recipients rjkimble, santa4nt
Date 2013-05-22.17:52:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369245131.24.0.45065081501.issue2056@psf.upfronthosting.co.za>
In-reply-to
Content
What platform? Works as expected on Ubuntu with Jython 2.7b1 for me:

$ cat /tmp/bang.py 
#!/usr/bin/env python

import sys

def main(args):
    print repr(args)
    return 0


if __name__ == '__main__':
    sys.exit(main(sys.argv))

$ ./dist/bin/jython --version
Jython 2.7b1+
$ ./dist/bin/jython /tmp/bang.py ! hello
['/tmp/bang.py', '!', 'hello']
History
Date User Action Args
2013-05-22 17:52:11santa4ntsetmessageid: <1369245131.24.0.45065081501.issue2056@psf.upfronthosting.co.za>
2013-05-22 17:52:11santa4ntsetrecipients: + santa4nt, rjkimble
2013-05-22 17:52:11santa4ntlinkissue2056 messages
2013-05-22 17:52:10santa4ntcreate