﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32378	Inconsistent exception raising syntax in documentation	johnthagen	nobody	"https://docs.djangoproject.com/en/dev/ref/views/#the-403-http-forbidden-view

{{{
from django.core.exceptions import PermissionDenied

def edit(request, pk):
    if not request.user.is_staff:
        raise PermissionDenied
    # ...
}}}

Should that be `raise PermissionDenied()` to raise an instance?"	Cleanup/optimization	closed	Documentation	dev	Normal	invalid			Unreviewed	0	0	0	0	1	0
