示例#1
0
文件: wsgi.py 项目: teratorn/rpclib
    def __init__(self, app, req_env, content_type):
        HttpMethodContext.__init__(self, app, req_env, content_type)

        self.transport = WsgiTransportContext(req_env, content_type)
        """Holds the WSGI-specific information"""
示例#2
0
    def __init__(self, app, request, content_type):
        HttpMethodContext.__init__(self, app, request, content_type)

        self.transport.type = 'twisted.web'