mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	attempt to verify #8726. Refs #8726. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8766 bcc190cf-cafb-0310-a4f2-bffc1f526a37
		
			
				
	
	
		
			14 lines
		
	
	
		
			196 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			196 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Fake views for testing url reverse lookup
 | |
| 
 | |
| def index(request):
 | |
|     pass
 | |
| 
 | |
| def client(request, id):
 | |
|     pass
 | |
| 
 | |
| def client_action(request, id, action):
 | |
|     pass
 | |
| 
 | |
| def client2(request, tag):
 | |
|     pass
 |