mirror of
				https://github.com/django/django.git
				synced 2025-11-04 05:35:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			216 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			216 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.core.cache.backends.locmem import LocMemCache
 | 
						|
 | 
						|
 | 
						|
class LiberalKeyValidationMixin(object):
 | 
						|
    def validate_key(self, key):
 | 
						|
        pass
 | 
						|
 | 
						|
 | 
						|
class CacheClass(LiberalKeyValidationMixin, LocMemCache):
 | 
						|
    pass
 |