Message10319

Author mishikal@yahoo.com
Recipients darjus, mishikal@yahoo.com, zyasoft
Date 2015-10-07.16:48:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1444236502.37.0.652920710804.issue2405@psf.upfronthosting.co.za>
In-reply-to
Content
Identical behavior using Oracle's JDK:

zimbra@q1:~$ /tmp/jdk1.8.0_60/bin/java -jar /tmp/jython-2.7.0.jar
Jython 2.7.0 (default:9987c746f838, Apr 29 2015, 02:25:11)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.8.0_60
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.getpid()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'getpid'
>>> quit()
zimbra@q1:~$ /tmp/jdk1.8.0_60/bin/java -jar /tmp/jython-2.7.0b3.jar
Jython 2.7b3 (default:e81256215fb0, Aug 4 2014, 02:39:51)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.8.0_60
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.getpid()
1385
>>>
History
Date User Action Args
2015-10-07 16:48:22mishikal@yahoo.comsetmessageid: <1444236502.37.0.652920710804.issue2405@psf.upfronthosting.co.za>
2015-10-07 16:48:22mishikal@yahoo.comsetrecipients: + mishikal@yahoo.com, zyasoft, darjus
2015-10-07 16:48:22mishikal@yahoo.comlinkissue2405 messages
2015-10-07 16:48:22mishikal@yahoo.comcreate