From eacb93d453db25df11c873b50743910101e383cb Mon Sep 17 00:00:00 2001 From: Pavlin Gergov Date: Mon, 20 Feb 2017 11:33:54 +0200 Subject: [PATCH] Update _not_authenticated's docstring (#4906) --- rest_framework/request.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rest_framework/request.py b/rest_framework/request.py index b4bd2d020..9428708ed 100644 --- a/rest_framework/request.py +++ b/rest_framework/request.py @@ -353,10 +353,9 @@ class Request(object): def _not_authenticated(self): """ - Return a three-tuple of (authenticator, user, authtoken), representing - an unauthenticated request. + Set authenticator, user & authtoken representing an unauthenticated request. - By default this will be (None, AnonymousUser, None). + Defaults are None, AnonymousUser & None. """ self._authenticator = None