mirror of
				https://github.com/django/django.git
				synced 2025-10-30 00:56:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from __future__ import unicode_literals
 | |
| 
 | |
| from django.core.exceptions import DisallowedHost, SuspiciousOperation
 | |
| 
 | |
| 
 | |
| def suspicious(request):
 | |
|     raise SuspiciousOperation('dubious')
 | |
| 
 | |
| 
 | |
| def suspicious_spec(request):
 | |
|     raise DisallowedHost('dubious')
 |