Doug Lee <dgl <at> dlee.org> writes:
> and since it's sent to STDERR and cmd doesn't allow redirection of
> that, I didn't get a screen shot of it all.
At least on my machine (Vista, but XP should work too), STDERR can be redirected
with '>2':
python -c "import sys; sys.stderr.write('hi\n')" 2> dump.txt
Kuno