mirror of
				https://github.com/django/django.git
				synced 2025-10-31 12:05:47 +00:00 
			
		
		
		
	Fixed #13093 -- Updated some decorators and the decorator_from_middleware function to allow callable classes to be decorated. Thanks to Brian Neal for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12762 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		
							parent
							
								
									5c256ddeec
								
							
						
					
					
						commit
						615eab6b02
					
				
					 8 changed files with 35 additions and 13 deletions
				
			
		|  | @ -8,3 +8,10 @@ xview_dec = decorator_from_middleware(XViewMiddleware) | |||
| def xview(request): | ||||
|     return HttpResponse() | ||||
| xview = xview_dec(xview) | ||||
| 
 | ||||
| 
 | ||||
| class ClassXView(object): | ||||
|     def __call__(self, request): | ||||
|         return HttpResponse() | ||||
| 
 | ||||
| class_xview = xview_dec(ClassXView()) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Russell Keith-Magee
						Russell Keith-Magee