mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	Fixed #19576 -- Use six.with_metaclass uniformously accross code base.
				
					
				
			This commit is contained in:
		
				
					committed by
					
						 Claude Paroz
						Claude Paroz
					
				
			
			
				
	
			
			
			
						parent
						
							55da775ce1
						
					
				
				
					commit
					f58efd07ff
				
			| @@ -990,7 +990,7 @@ class InstanceCheckMeta(type): | ||||
|     def __instancecheck__(self, instance): | ||||
|         return instance.query.is_empty() | ||||
|  | ||||
| class EmptyQuerySet(six.with_metaclass(InstanceCheckMeta), object): | ||||
| class EmptyQuerySet(six.with_metaclass(InstanceCheckMeta)): | ||||
|     """ | ||||
|     Marker class usable for checking if a queryset is empty by .none(): | ||||
|         isinstance(qs.none(), EmptyQuerySet) -> True | ||||
|   | ||||
		Reference in New Issue
	
	Block a user