From 5f47ce0b4ca1bc1c60e3beaff52d9f6d3747e5a1 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 28 Dec 2005 23:14:09 +0000 Subject: [PATCH] Fixed #1128 -- Fixed typo in docs/url_dispatch.txt. Thanks, joost git-svn-id: http://code.djangoproject.com/svn/django/trunk@1790 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/url_dispatch.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/url_dispatch.txt b/docs/url_dispatch.txt index 27b24dd57d..55a154396c 100644 --- a/docs/url_dispatch.txt +++ b/docs/url_dispatch.txt @@ -148,11 +148,6 @@ The matching/grouping algorithm Here's the algorithm the URLconf parser follows, with respect to named groups vs. non-named groups in a regular expression: - * If there are any named groups, it will use those as keyword arguments, - ignoring any non-named groups. - * Otherwise, it will pass all non-named groups as positional arguments. - * In both cases, it will pass any extra - If there are any named arguments, it will use those, ignoring non-named arguments. Otherwise, it will pass all non-named arguments as positional arguments.