Re: Calling Script from Command line not working

2011-09-01 Thread Sathish S
One more thing I observed is, while running the script from IDLE it launches a seperate process of pythonw.exe and I could see this console window poping up. However while running it from command prompt this does not happens. I was wondering if the command prompt way of calling the script is not ab

Re: Calling Script from Command line not working

2011-09-01 Thread Sathish S
Hey Gabriel, Thanks a lot for replying. I was able to run this python script from console/command prompt using cygwin python. I'm not sure whats the difference between these two versions of python. But it seems to be working. Searching theough the web i found that having cygwin1.dll could be causin

Re: Calling Script from Command line not working

2011-09-01 Thread Gabriel Genellina
En Mon, 29 Aug 2011 07:40:06 -0300, Sathish S escribió: We created a DLL using cygwin and have written a class based python module for the same. We have created a sample script for the class based python module, that creates an object of the class and calls various methods in the class. T

Calling Script from Command line not working

2011-08-29 Thread Sathish S
Hi Ppl, We created a DLL using cygwin and have written a class based python module for the same. We have created a sample script for the class based python module, that creates an object of the class and calls various methods in the class. This Test script works fine while I run it from IDLE. Howe