view wsgintegrate/factory.py @ 2:70fa0bda7726

stub factory class built on pyloader class
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 13 Jun 2011 07:35:03 -0700
parents
children 05683af3240c
line wrap: on
line source


"""
WSGI integration factory
"""

from pyloader.factory import IniFactory

class WSGIfactory(IniFactory):
    def __call__(self, environ, start_response):
        """WSGI"""