Re: file extension while saving Python files

2011-11-09 Thread 88888 Dihedral
In testing and debug it is better that a program can be easily modified and easy to set break point and dump values. Thus an interpreter environment is more convenient. But in the final version a compiler can speed up a lot! -- http://mail.python.org/mailman/listinfo/python-list

Re: file extension while saving Python files

2011-11-08 Thread Ned Deily
In article , vaira muthu wrote: > In Python IDE, while we save the script, it will prompt the save > Dialog. If we specify the filename as "Test". Then file will be saved > without extension as "Test" and not "Test.py". > > Is it possible to save the script with .py extension automatically (as

Re: file extension while saving Python files

2011-11-08 Thread mannan
if it is not a python ide then, you have to explicitly specify the extension. -- http://mail.python.org/mailman/listinfo/python-list

Re: file extension while saving Python files

2011-11-08 Thread John Gordon
In vaira muthu writes: > Team, > In Python IDE, while we save the script, it will prompt the save > Dialog. If we specify the filename as "Test". Then file will be saved > without extension as "Test" and not "Test.py". Is there a drop-down list selection for specifying the file type? -- Joh

Re: file extension while saving Python files

2011-11-08 Thread Magnus Lyckå
On 2011-11-08 11:05, vaira muthu wrote: In Python IDE, ... Which Python IDE? There are dozens: http://wiki.python.org/moin/IntegratedDevelopmentEnvironments -- http://mail.python.org/mailman/listinfo/python-list

Re: File extension

2007-03-17 Thread Steve Holden
Anil Kumar wrote: > Hi, > > Can Python Script can have different extensions like .sh etc Or Is > .py is mandatory to be present as the extension for the Python Script. > The interpreter itself doesn't really care. The issues you are hotting are due to operating system. and command shell d

Re: File extension

2007-03-17 Thread Gabriel Genellina
En Fri, 16 Mar 2007 19:59:09 -0300, Anil Kumar <[EMAIL PROTECTED]> escribió: > But when I try a python script with extension .sh in windows, the file is > not getting recognized by the Python interpreter. Is this supported? Or > is > there any way we can achieve the same? C:\TEMP>type test.sh