|
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]