示例#1
0
 def get_app(self):
     o = webmaster.Options()
     m = webmaster.WebMaster(o, proxy.DummyServer())
     return app.Application(m, None, None)
示例#2
0
 def get_app(self):
     o = master.Options()
     m = master.WebMaster(None, o)
     return app.Application(m, None, None)
示例#3
0
 def mkmaster(self, filt, **options):
     o = master.Options(filtstr=filt, **options)
     return master.WebMaster(None, o)
示例#4
0
 def mkmaster(self, **options):
     o = master.Options(**options)
     return master.WebMaster(None, o)
示例#5
0
 def mkmaster(self, **options):
     o = master.Options(**options)
     return master.WebMaster(o, proxy.DummyServer(o))