Yes, Kid templates are compiled and loaded into "sys.modules" the first time they're accessed. Subsequent accesses will only reload the template if the modification time has changed.
If you wish to avoid event the modification time check you can set the config option "kid.precompiled = True". If you want to use precompiled templates you'll need to run the kidc compiler yourself, such as: find mypackage -name *.kid | xargs kidc That will generate the .pyc files for each template found in your package. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears -~----------~----~----~----~------~----~------~--~---

