Staging
v0.5.1
Revision cb7f6544f09d38eb73f9894426f8cca16b9bf5b1 authored by cvs2svn on 26 March 2002, 13:47:16 UTC, committed by cvs2svn on 26 March 2002, 13:47:16 UTC
1 parent 8b9a781
Raw File
test_tokenize.py
from test_support import verbose, findfile
import tokenize, os, sys

if verbose:
    print 'starting...'
file = open(findfile('tokenize_tests'+os.extsep+'py'))
tokenize.tokenize(file.readline)
if verbose:
    print 'finished'
back to top