home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 33
/
Freelog033.iso
/
Progr
/
Python-2.2.1.exe
/
TEST_TOKENIZE.PY
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
2001-10-24
|
235 b
|
10 lines
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'