mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Generated correct admindocs URLs on Python 3. URLs generate 404s on
Python 2, as in older versions of Django.
Backport of bc1e2d8e8e from master
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			386 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			386 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.conf.urls import url
 | |
| 
 | |
| 
 | |
| class ViewContainer(object):
 | |
|     def method_view(self, request):
 | |
|         pass
 | |
| 
 | |
|     @classmethod
 | |
|     def classmethod_view(cls, request):
 | |
|         pass
 | |
| 
 | |
| view_container = ViewContainer()
 | |
| 
 | |
| 
 | |
| urlpatterns = [
 | |
|     url(r'^$', view_container.method_view, name='instance-method-url'),
 | |
|     url(r'^$', ViewContainer.classmethod_view, name='instance-method-url'),
 | |
| ]
 |