mirror of
				https://github.com/django/django.git
				synced 2025-10-30 17:16:10 +00:00 
			
		
		
		
	Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests.
		
			
				
	
	
		
			6 lines
		
	
	
		
			140 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			140 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import patterns, url
 | |
| 
 | |
| urlpatterns = patterns('',
 | |
|     url(r'^index/$', 'view_tests.views.index_page', name='index'),
 | |
| )
 |