summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_tokenize.py
blob: 22a1d90afb00bec0cf19c50a070858e2cb857e9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from test.test_support import verbose, findfile
import tokenize, os, sys

if verbose:
    print 'starting...'

f = file(findfile('tokenize_tests'+os.extsep+'py'))
tokenize.tokenize(f.readline)
f.close()

if verbose:
    print 'finished'