﻿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
19605	Unnecessary import in code examples from the docs	sergzach	nobody	"The next sample fragment has unnecessary imports of 'url' and 'include':


{{{
from django.conf.urls import patterns, url, include

urlpatterns = patterns('',
    (r'^articles/2003/$', 'news.views.special_case_2003'),
    (r'^articles/(\d{4})/$', 'news.views.year_archive'),
    (r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
    (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
)
}}}

The link: https://docs.djangoproject.com/en/1.5/topics/http/urls/#example"	Cleanup/optimization	closed	Documentation	1.5-beta-1	Normal	fixed			Accepted	0	0	0	0	1	0
