Author janglin
Recipients janglin, pitrou
Date 2009-07-01.19:36:55
SpamBayes Score 7.36544e-08
Marked as misclassified No
Message-id <1246477017.13.0.467200841893.issue6394@psf.upfronthosting.co.za>
In-reply-to
Content
Implements getppid in the os module on Windows systems. The getppid 
function was only available on Unix like systems, this diff patch brings 
this functionality to Windows systems.  This function will return the 
parent process Id, upon error it raises a WindowsError. This differs 
from the Unix implementation that never fails.  Due to the way Windows 
returns the parent process Id, a never fail guarantee can not be made.  
This is a revision of a previous post.  The file Issue6394-1.diff 
contains the updated patches.
History
Date User Action Args
2009-07-01 19:36:57janglinsetrecipients: + janglin, pitrou
2009-07-01 19:36:57janglinsetmessageid: <1246477017.13.0.467200841893.issue6394@psf.upfronthosting.co.za>
2009-07-01 19:36:55janglinlinkissue6394 messages
2009-07-01 19:36:55janglincreate