forbidden.py 文件源码

python
阅读 20 收藏 0 点赞 0 评论 0

项目:websauna 作者: websauna 项目源码 文件源码
def forbidden(request):


    # The template rendering opens a new transaction which is not rolled back by Pyramid transaction machinery, because we are in a very special view. This tranaction will cause the tests to hang as the open transaction blocks Base.drop_all() in PostgreSQL. Here we have careful instructions to roll back any pending transaction by hand.
    html = render('core/forbidden.html', {}, request=request)
    resp = Response(html)
    resp.status_code = 403

    # Hint pyramid_redis_session not to generate any session cookies for this response
    resp.cache_control.public = True

    transaction.abort()
    return resp
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号