コード例 #1
0
ファイル: __init__.py プロジェクト: ieure/dream
 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)
コード例 #2
0
ファイル: wrappers.py プロジェクト: MechanisM/dj-webmachine
    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 {}
コード例 #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 {}
コード例 #4
0
ファイル: app.py プロジェクト: baverman/baito
    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)
コード例 #5
0
ファイル: handler.py プロジェクト: georgemarshall/twod.wsgi
 def __init__(self, environ):
     Request.__init__(self, environ)
     WSGIRequest.__init__(self, environ)
コード例 #6
0
ファイル: handler.py プロジェクト: orientalperil/twod.wsgi
 def __init__(self, environ):
     Request.__init__(self, environ)
     WSGIRequest.__init__(self, environ)