def get_app(self): o = webmaster.Options() m = webmaster.WebMaster(o, proxy.DummyServer()) return app.Application(m, None, None)
def get_app(self): o = master.Options() m = master.WebMaster(None, o) return app.Application(m, None, None)
def mkmaster(self, filt, **options): o = master.Options(filtstr=filt, **options) return master.WebMaster(None, o)
def mkmaster(self, **options): o = master.Options(**options) return master.WebMaster(None, o)
def mkmaster(self, **options): o = master.Options(**options) return master.WebMaster(o, proxy.DummyServer(o))