﻿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
26835	Django's URL Regex Should Match Less	Dave Halter	nobody	"A lot of Django users URLs look like this:

{{{
r'^$'
r'^users$'
}}}

I think it is annoying for a lot of users to need to write `^` and `$`. In my opinion, users should always have to match the full URL. With `.*` anyone could easily match the old behavior.

I have often come across URLs where the `^` and `$` tags have been forgotten and therefore pretty much any URL would have matched.

This is obviously something that breaks backwards compatibility, so we would have to think about possibly deprecating the old behavior.

`django.conf.urls.include()` would obviously not need to match everything.

I'd be glad to help out with the implementation."	Cleanup/optimization	closed	Core (URLs)	1.9	Normal	needsinfo		davidhalter88@…	Unreviewed	0	0	0	0	0	0
