Michael Merickel
2018-10-15 0c29cf2df41600d3906d521c72991c7686018b71
commit | author | age
446967 1 from pyramid.response import Response
CM 2
0c29cf 3
446967 4 def aview(request):
CM 5     return Response('root')
0c29cf 6
446967 7
CM 8 def configure(config):
9     config.add_view(aview)
dd3cc8 10     config.include('tests.pkgs.includeapp1.two.configure')
446967 11     config.commit()