0001cherrypy_installed = False
0002
0003def install():
0004    global cherrypy_installed
0005    if cherrypy_installed:
0006        return
0007    import cherrypy
0008    cherrypy.root = FAKE_ROOT
0009    cherrypy.server.start(initOnly=True, serverClass=None)
0010    cherrypy_installed = True
0011
0012def make_app(global_conf):
0013    install()
0014    from cherrypy._cpwsgi import wsgiApp
0015    return wsgiApp