Searched refs:asbool (Results 1 – 13 of 13) sorted by relevance
36 display = converters.asbool(display)111 from paste.deploy.converters import asbool113 display = asbool(display)115 global_conf['debug'] = asbool(global_conf['debug'])
109 from paste.util.converters import asbool119 setup_console_handler=asbool(setup_console_handler),
1305 if converters.asbool(use_threadpool):1320 if converters.asbool(start_loop):1339 from paste.deploy.converters import asbool1351 kwargs[name] = asbool(kwargs[name])
161 self.debug = converters.asbool(global_conf.get('debug', False))
276 include_os_environ = converters.asbool(include_os_environ)
73 from paste.deploy.converters import asbool77 progress=asbool(progress))
76 from paste.deploy.converters import asbool77 print_wsgi_errors = asbool(print_wsgi_errors)
329 from paste.deploy.converters import asbool330 return WatchThreads(allow_kill=asbool(allow_kill))
98 from paste.deploy.converters import asbool99 clobber_username = asbool(clobber_username)
399 from paste.deploy.converters import asbool401 catch_401 = asbool(catch_401)404 apply_auth_tkt = asbool(apply_auth_tkt)
420 from paste.deploy.converters import asbool421 secure = asbool(secure)422 include_ip = asbool(include_ip)
99 debug = converters.asbool(global_conf.get('debug'))101 …show_exceptions_in_wsgi_errors = converters.asbool(global_conf.get('show_exceptions_in_wsgi_errors…102 self.debug_mode = converters.asbool(debug)119 self.smtp_use_tls = smtp_use_tls or converters.asbool(global_conf.get('smtp_use_tls'))
7 def asbool(obj): function