mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +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'
 | 
						|
 |