Version 1 (modified by floguy@…, 18 years ago) ( diff )

Added PsycoMiddleware

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:
            from psyco import psyco
            psyco.profile()
        except ImportError:
            pass
        return None
Note: See TracWiki for help on using the wiki.
Back to Top