summaryrefslogtreecommitdiff
path: root/tests/test_config/pkgs/scannable/subpackage/notinit.py
blob: f7edd0c680f9aebe037c2fc3660479acac6bee40 (plain)
1
2
3
4
5
6
from pyramid.view import view_config
from pyramid.renderers import null_renderer

@view_config(name='subpackage_notinit', renderer=null_renderer)
def subpackage_notinit(context, request):
    return 'subpackage_notinit'