"Liam Clarke" <[EMAIL PROTECTED]> said:
>Hi all,
>
[...]
>So... does anyone know how to pipe stderr in a cmd.exe console to a file?
>foo.exe > bob.txt only pipes stdout, stderr is still hitting the screen.
>
To have stderr go to a separate file:
foo.exe > bob.txt &2>err.txt
To ha
"Mike Hansen" <[EMAIL PROTECTED]> said:
[...]
http://freshmeat.net/projects/pysnippet/
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
"Nathan Pinno" <[EMAIL PROTECTED]> said:
>Hey all,
>
>The Giant Calculator runs now, just not as I want it to. I can't seem to get
>it past the main menu. Here is the code:
>
># This program is designed as a big calculator with functions.
>
># This first bunch of code is for the various menus. I
"Brian van den Broek" <[EMAIL PROTECTED]> said:
>Marc Gartler said unto the world upon 2004-12-14 18:12:
>> Hi all,
>>
>> I am fairly new to both Python & programming, and am attempting to
>> create a function that will test whether some user input is an integer
>> between 10 and 89, but the ch