Message5024

Author yanne
Recipients yanne
Date 2009-08-14.12:08:46
SpamBayes Score 0.00010196435
Marked as misclassified No
Message-id <1250251727.43.0.371619823692.issue1434@psf.upfronthosting.co.za>
In-reply-to
Content
Jython 2.5.0 (Release_2_5_0:6476, Jun 16 2009, 13:33:26) 
[Java HotSpot(TM) Server VM (Sun Microsystems Inc.)] on java1.6.0_14
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> p = os.popen('ls nonexisting')
>>> ls: cannot access nonexisting: No such file or directory

>>> print p.close()
None

Jython 2.2 on java1.6.0_14
Type "copyright", "credits" or "license" for more information.
>>> import os
>>> p = os.popen('ls nonexisting')
>>> print p.close()
2
History
Date User Action Args
2009-08-14 12:08:47yannesetrecipients: + yanne
2009-08-14 12:08:47yannesetmessageid: <1250251727.43.0.371619823692.issue1434@psf.upfronthosting.co.za>
2009-08-14 12:08:47yannelinkissue1434 messages
2009-08-14 12:08:46yannecreate