Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #34638 > unrolled thread

Re: forking and avoiding zombies!

Started byDennis Lee Bieber <wlfraed@ix.netcom.com>
First post2012-12-11 14:40 -0500
Last post2012-12-11 14:40 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: forking and avoiding zombies! Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2012-12-11 14:40 -0500

#34638 — Re: forking and avoiding zombies!

FromDennis Lee Bieber <wlfraed@ix.netcom.com>
Date2012-12-11 14:40 -0500
SubjectRe: forking and avoiding zombies!
Message-ID<mailman.738.1355254836.29569.python-list@python.org>
On Tue, 11 Dec 2012 10:34:23 -0300, peter <pjmakey2@gmail.com> declaimed
the following in gmane.comp.python.general:

> 
> stderrfile = '%s/error.log' % os.getcwd()
> stdoutfile = '%s/out.log' % os.getcwd()
>
	Ouch...

	stdoutfile = os.path.join(os.getcwd(), "out.log")

minimizes any OS specific quirks in path naming...
-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
        wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web