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