﻿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
4925	Keyword arguments make the resolver drop positional arguments	dusk@…	Jacob	"Given the URL configuration
{{{
#!python
from django.conf.urls.defaults import *

def func(request): pass

urlpatterns = patterns('',
        (r'^(\d+)/(?P<kwarg>\d+)/$', func),
)
}}}
The following occurs:
{{{
>>> import django.core.urlresolvers
>>> django.core.urlresolvers.resolve('/123/456/')
(<function func2 at 0x133ec30>, (), {'kwarg': '456'})
}}}
Note that the positional argument '123' is lost, causing a regression I observed in my patch for #4915."		closed	Uncategorized	dev		wontfix			Unreviewed	0	0	0	0	0	0
