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

file extension while saving Python files

2011-11-08 Thread vaira muthu
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 it possible to save the script with .py extension automatically (as Test.py)? Thanks, vairamuthu. -- htt