My goal: In Pyramid, to call another view-callable, and to get a Response object back without knowing any details about that view-callable.
Response
In my Pyramid a
can't you do something like that:
@view_config(name="baz") def baz_view(request): return HTTPFound(location=self.request.route_path('foo'))