Message4701

Author otmarhumbel
Recipients otmarhumbel
Date 2009-05-20.09:29:35
SpamBayes Score 1.0127565e-08
Marked as misclassified No
Message-id <1242811776.69.0.877049022631.issue1351@psf.upfronthosting.co.za>
In-reply-to
Content
The following could be reproduced both on Windows XP and Windows Vista,
using Jython 2.5rc2:

C:\stuff\jython\jython-2.5rc2>jython
Jython 2.5rc2 (Release_2_5rc2:6341, May 11 2009, 17:07:28)
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_13
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> import sys
>>> cmd_line = [ sys.executable, '-m', 'runpy', 'fnordl9203828xyz' ]
>>> subprocess.call(cmd_line)
Traceback (most recent call last):
  #snipped
ImportError: No module named fnordl9203828xyz
>>> subprocess.call(cmd_line, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
  #running for ever
History
Date User Action Args
2009-05-20 09:29:36otmarhumbelsetrecipients: + otmarhumbel
2009-05-20 09:29:36otmarhumbelsetmessageid: <1242811776.69.0.877049022631.issue1351@psf.upfronthosting.co.za>
2009-05-20 09:29:36otmarhumbellinkissue1351 messages
2009-05-20 09:29:35otmarhumbelcreate