Re: [Tutor] python interpreter vs bat file

2009-07-20 Thread Dinesh B Vadhia
inesh Message: 1 Date: Sun, 19 Jul 2009 23:22:47 +0100 From: "Alan Gauld" To: tutor@python.org Subject: Re: [Tutor] python interpreter vs bat file Message-ID: Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original

Re: [Tutor] python interpreter vs bat file

2009-07-19 Thread Alan Gauld
"Dinesh B Vadhia" wrote Bob Gailer suggested running the Python programs individually in CMD one after the other. This is sensible but my test programs run for days and the full suite of programs take longer. OK, But it can't take longer than in IDLE? Or even in the bat file. So you can

Re: [Tutor] python interpreter vs bat file

2009-07-19 Thread Dinesh B Vadhia
Idle. Hth ... Dinesh Message: 5 Date: Sun, 19 Jul 2009 11:56:15 -0700 From: Dave Kuhlman To: tutor@python.org Subject: Re: [Tutor] python interpreter vs bat file Message-ID: <20090719185615.ga5...@cutter.rexx.com&

Re: [Tutor] python interpreter vs bat file

2009-07-19 Thread Dave Kuhlman
On Sun, Jul 19, 2009 at 05:40:41AM -0700, Dinesh B Vadhia wrote: > >1. Run Python Programs with Batch file > >Python programs run from a Windows XP batch file (test.bat) in a CMD >window initiated from Windows Explorer. All programs except one >execute successfully which stops w

Re: [Tutor] python interpreter vs bat file

2009-07-19 Thread bob gailer
Dinesh B Vadhia wrote: 1. Run Python Programs with Batch file Python programs run from a Windows XP batch file (test.bat) in a CMD window initiated from Windows Explorer. All programs except one execute successfully which stops with a memory error but batch file continues to execute other Py

Re: [Tutor] python interpreter vs bat file

2009-07-19 Thread Dinesh B Vadhia
Date: Sun, 19 Jul 2009 07:18:08 +0100 From: "Alan Gauld" To: tutor@python.org Subject: Re: [Tutor] python interpreter vs bat file Message-ID: Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original "Dinesh B Vadhia" wrote > No

Re: [Tutor] python interpreter vs bat file

2009-07-18 Thread Alan Gauld
"Dinesh B Vadhia" wrote Not much more information available. Have a batch file (eg. 'test.bat') with entries: python "program a.py" python "program b.py" python "program c.py" One of the programs (eg. 'program c.py') fails with a memory error when performing a pickle.dump: Traceback (mos

Re: [Tutor] python interpreter vs bat file

2009-07-18 Thread Dinesh B Vadhia
before and it seems odd behavior. Dinesh From: Jeff Johnson Sent: Saturday, July 18, 2009 3:24 PM To: Dinesh B Vadhia Cc: tutor@python.org Subject: Re: [Tutor] python interpreter vs bat file Need more information. Python works on Windows as good as anything else. Maybe even better. Dine

Re: [Tutor] python interpreter vs bat file

2009-07-18 Thread Jeff Johnson
Need more information. Python works on Windows as good as anything else. Maybe even better. Dinesh B Vadhia wrote: During recent program testing, I ran a few Python programs from a Windows XP batch file which causes a memory error for one of the programs. If I run the same set of programs f

Re: [Tutor] python interpreter vs bat file

2009-07-18 Thread Alan Gauld
"Dinesh B Vadhia" wrote During recent program testing, I ran a few Python programs from a Windows XP batch file which causes a memory error for one of the programs. If I run the same set of programs from the Python interpreter no memory error occurs. Any idea why this might be? I'm not sure

[Tutor] python interpreter vs bat file

2009-07-18 Thread Dinesh B Vadhia
During recent program testing, I ran a few Python programs from a Windows XP batch file which causes a memory error for one of the programs. If I run the same set of programs from the Python interpreter no memory error occurs. Any idea why this might be? Dinesh ___