def profile_filter_app_factory(app, global_conf, **kwargs): return Profiler(app, global_conf, **kwargs)
def filter(app): return Profiler(app, global_conf, **kwargs)
def make_wsgi_app(self): profiler = Profiler(hello_world, profile_path=self.tmpdir) return profiler