def __init__(self, ch, env, start_response, content_type): self.ch = ch self.env = env self._response_started = False self._start_response = start_response self.content_type = content_type self.closed = False BaseRequest.__init__(self, env)
def __init__(self, environ, **kw): BaseRequest.__init__(self, environ, kw) self.getsession() self.implementation = chooser.get(self.session)
def __init__(self, environ, url_adapter): BaseRequest.__init__(self, environ) self.url_adapter = url_adapter local.request = self
def __init__(self, environ): BaseRequest.__init__(self, environ) self.session = SecureCookie.load_cookie(self, secret_key=SECRET_KEY)
def __init__(self, environ): BaseRequest.__init__(self, environ)