Example #1
0
 def __init__(self, environ, charset=NoDefault,
              unicode_errors=NoDefault,
              decode_param_names=NoDefault, **kw):
     self._id = None
     WebObRequest.__init__(
         self, environ, charset=charset, unicode_errors=unicode_errors,
         decode_param_names=decode_param_names, **kw)
Example #2
0
    def __init__(self, environ, *args, **kwargs):
        Request.__init__(self, environ)
        WSGIRequest.__init__(self, environ)

        # add path args args to the request
        self.url_args = args or []
        self.url_kwargs = kwargs or {}
Example #3
0
    def __init__(self, environ, *args, **kwargs):
        Request.__init__(self, environ)
        WSGIRequest.__init__(self, environ)

        # add path args args to the request
        self.url_args = args or []
        self.url_kwargs = kwargs or {}
Example #4
0
    def __init__(self, app, environ):
        Request.__init__(self, environ)

        self.app = app
        self.url_generator = URLGenerator(app.url_map, environ)
        self.session = environ.get('beaker.session', None)
Example #5
0
 def __init__(self, environ):
     Request.__init__(self, environ)
     WSGIRequest.__init__(self, environ)
Example #6
0
 def __init__(self, environ):
     Request.__init__(self, environ)
     WSGIRequest.__init__(self, environ)