Lines Matching full:defaults
35 'paste.wsgiwrappers.WSGIRequest.defaults instead',
37 WSGIResponse.defaults._push_object(obj)
40 # settings is deprecated: use WSGIResponse.defaults instead
85 The class variable ``defaults`` specifies default values for
109 defaults = StackedObjectProxy(default=dict(charset=None, errors='replace',
117 defaults = self.defaults._current_obj()
118 self.charset = defaults.get('charset')
125 self.errors = defaults.get('errors', 'strict')
126 self.decode_param_names = defaults.get('decode_param_names', False)
167 fallback = self.defaults.get('language', 'en-us')
298 The class variable ``defaults`` specifies default values for
303 defaults = StackedObjectProxy(
316 defaults = self.defaults._current_obj()
318 mimetype = defaults.get('content_type', 'text/html')
319 charset = defaults.get('charset')
322 self.headers.update(defaults.get('headers', {}))
324 self.errors = defaults.get('errors', 'strict')