Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #34638 > unrolled thread
| Started by | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| First post | 2012-12-11 14:40 -0500 |
| Last post | 2012-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.
Re: forking and avoiding zombies! Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2012-12-11 14:40 -0500
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Date | 2012-12-11 14:40 -0500 |
| Subject | Re: 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/
Back to top | Article view | comp.lang.python
csiph-web