LuKreme wrote: > >With further reading into Python, it appears that one of Python's features Is >that it automatically recompiles .py files to .pyc files when needed, as soon >as it triggers an import of the file, so there is nothing I need to do after >changing the source and restarting mailman, it will just work. > >Is that correct?
Yes and no. As I indicated in my prior reply at <http://mail.python.org/pipermail/mailman-users/2011-May/071536.html>, in your specific case the qrunners don't have permission to write the .pyc so it can't be updated. This is not a problem in that Python will always use the more recent .py, but there is innefficiency in that since the .pyc can't be written, the .py will have to be compiled each time it is imported. -- Mark Sapiro <m...@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org