Message474

Author bckfnn
Recipients
Date 2001-11-21.15:18:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=4201

Unfortunately that solution will destroy quoted arguments 
with spaces on win2k. The script:

  import sys; print sys

and the command line:

  jython x.py "abc def" "123"

will output a different result with the argument loop.

   ['x.py', 'abc def', '123']

vs

   ['x.py', 'abc', 'def', '123']
History
Date User Action Args
2008-02-20 17:16:56adminlinkissue484181 messages
2008-02-20 17:16:56admincreate