mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 10:26:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			215 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from test_support import verbose, findfile
 | |
| import tokenize, os, sys
 | |
| 
 | |
| if verbose:
 | |
|     print 'starting...'
 | |
| file = open(findfile('tokenize_tests.py'))
 | |
| tokenize.tokenize(file.readline)
 | |
| if verbose:
 | |
|     print 'finished'
 | |
| 
 | 
