Re: Caution newbie question: python window to stay open ?

2006-11-22 Thread jim-on-linux
Michael, put this at the top of your code. After the window closes read the testLog.out file. It may give you a clue as to what is happening. sys.stdout = open('testLog.out', 'w') jim-on-linux http://www.inqvista.com On Tuesday 21 November 2006 22:20, mkengel wrote: Caution: newbie

Caution newbie question: python window to stay open ?

2006-11-21 Thread mkengel
Caution: newbie question I am using python 2.4.3-11 on Windows XP. Problem: Python window closes immediately after executing a *.py file (e.g. containing a print... command. What do I have to do to keep it open to see the results ? Interactive window stays open. Thank you. Michael --

Re: Caution newbie question: python window to stay open ?

2006-11-21 Thread doobiz
mkengel wrote: Caution: newbie question If you're pretty sure it's a common newbie question, then begin by going to the Google repository at: http://groups.google.com/group/comp.lang.python Search in the box at upper right, on, say, keep cmd window open, or keep dos window open. Like so:

Re: Caution newbie question: python window to stay open ?

2006-11-21 Thread BartlebyScrivener
mkengel wrote: Caution: newbie question If you're pretty sure it's a common newbie question, then begin by going to the Google repository at: http://groups.google.com/group/comp.lang.python Search in the box at upper right, on, say, keep cmd window open, or keep dos window open. Like so:

Re: Caution newbie question: python window to stay open ?

2006-11-21 Thread Fredrik Lundh
mkengel wrote: Problem: Python window closes immediately after executing a *.py file (e.g. containing a print... command. What do I have to do to keep it open to see the results ? Simple scripts that print to a console, or read from it, works best if you run them from a standard Command