The original file name is view.py, forms.py but python automatically adds/saves some file named view.pyc, forms.pyc
I want to delete those extra view.pyc and forms.pyc files.
Why do I get those .pyc files?
Or how can I tell python not to create those extra files with .pyc extension?
pyc files are compiled bytecode files, not backup files
6.1.2 “Compiled” Python files http://docs.python.org/release/1.5.1p1/tut/node43.html
Update:
To avoid writing pyc files (Python 2.6+)
python -B)See also How to avoid .pyc files?
Vim backups are named view.py~
Disable vim backups using