Message7568

Author behackett
Recipients behackett
Date 2013-01-10.02:17:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357784232.64.0.932316750221.issue2004@psf.upfronthosting.co.za>
In-reply-to
Content
This is a regression from 2.5.x:

Jython 2.5.3 (2.5:c56500f08d34+, Aug 13 2012, 14:54:35)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.7.0_10
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.getpid()
2844
>>>

Jython 2.7a2 (default:9c148a201233, May 24 2012, 15:49:00)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.7.0_10
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'
>>>

Linux and OSX are fine, os.getpid is just missing on Windows.
History
Date User Action Args
2013-01-10 02:17:12behackettsetrecipients: + behackett
2013-01-10 02:17:12behackettsetmessageid: <1357784232.64.0.932316750221.issue2004@psf.upfronthosting.co.za>
2013-01-10 02:17:12behackettlinkissue2004 messages
2013-01-10 02:17:11behackettcreate