I'm hoping this is going to be the simplest question I ever ask here! I've googled etc, but not found anything definitive. I have a .tac file - which I know is a twisted application. I can run this by executing:
twistd -ny mailserver.tac
if I did the following, would the behaviour be any different (ie, what IS so significant about using the twistd executable, and .tac suffix files?
mv mailserver.tac mailserver.py
python mailserver.py
or even, without the rename:
python mailserver.tac
Any guidance on the differences would be welcomed!