os.execute and the dreaded Windows console
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: os.execute and the dreaded Windows console
- From: Taylor Venable <taylor@...>
- Date: Mon, 8 Sep 2008 15:58:29 -0400
Hi all,
Is there any good way to prevent a Windows console from appearing
every time I use os.execute from a non-console app?
Thanks for any ideas.
--
Taylor Venable http://real.metasyntax.net:2357/
foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or
[f(l[0], foldr(f, i, l[1:]))])[0]