mirror of
https://github.com/python/cpython.git
synced 2024-11-29 12:54:02 +08:00
f785042433
'verify' iff it's used by a test module...
10 lines
214 B
Python
10 lines
214 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'
|