summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/urlresolvers.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/django/core/urlresolvers.py b/django/core/urlresolvers.py
index f7753cf092..f3caaa96c8 100644
--- a/django/core/urlresolvers.py
+++ b/django/core/urlresolvers.py
@@ -2,9 +2,8 @@
This module converts requested URLs to callback view functions.
RegexURLResolver is the main class here. Its resolve() method takes a URL (as
-a string) and returns a tuple in this format:
-
- (view_function, function_args, function_kwargs)
+a string) and returns a ResolverMatch object which provides access to all
+attributes of the resolved URL match.
"""
from __future__ import unicode_literals