Lines Matching refs:conf
26 def push_thread_config(self, conf): argument
41 self._push_object(conf)
43 def pop_thread_config(self, conf=None): argument
49 self._pop_object(conf)
51 def push_process_config(self, conf): argument
56 self._process_configs.append(conf)
58 def pop_process_config(self, conf=None): argument
59 self._pop_from(self._process_configs, conf)
61 def _pop_from(self, lst, conf): argument
63 if conf is not None and popped is not conf:
67 % (popped, conf))
116 conf = global_conf.copy()
117 conf.update(local_conf)
118 return ConfigMiddleware(app, conf)