Version 2 (modified by 18 years ago) ( diff ) | ,
---|
class PsycoMiddleware(object): """ This middleware enables the psyco extension module which can massively speed up the execution of any Python code. """ def process_request(self, request): try: import psyco psyco.profile() except ImportError: pass return None
Note:
See TracWiki
for help on using the wiki.