Message5197

Author public.marvin
Recipients public.marvin
Date 2009-09-28.16:22:21
SpamBayes Score 6.033588e-08
Marked as misclassified No
Message-id <1254154942.64.0.787055769108.issue1477@psf.upfronthosting.co.za>
In-reply-to
Content
os.setpgrp fails with TypeError: setpgrp() takes no arguments (2 given).
 This delegates down to os._posix.setpgrp() that requires 2 arguments. 
A possible patch is attached. 

Python docs suggest that os.setpgrp may take either 0 or 2 arguments,
depending on the underlying implementation. 

Workaround:  Use os._posix.setpgrp directly.  Functionality seems to be
there.
History
Date User Action Args
2009-09-28 16:22:22public.marvinsetrecipients: + public.marvin
2009-09-28 16:22:22public.marvinsetmessageid: <1254154942.64.0.787055769108.issue1477@psf.upfronthosting.co.za>
2009-09-28 16:22:22public.marvinlinkissue1477 messages
2009-09-28 16:22:22public.marvincreate