From 5487ec803937cbb3e6b979883c69ef1eead1403d Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sun, 1 May 2011 20:08:55 +0000 Subject: [PATCH] Fixed #15887 - Added clarification for required_*() decorators; thanks RoySmith for the sugggestion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16139 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/http/decorators.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/topics/http/decorators.txt b/docs/topics/http/decorators.txt index 1a5c7776b5..83d14a0777 100644 --- a/docs/topics/http/decorators.txt +++ b/docs/topics/http/decorators.txt @@ -11,7 +11,8 @@ Allowed HTTP methods ==================== The decorators in :mod:`django.views.decorators.http` can be used to restrict -access to views based on the request method. +access to views based on the request method. These decorators will return +a :class:`django.http.HttpResponseNotAllowed` if the conditions are not met. .. function:: require_http_methods(request_method_list)