home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Komputer for Alle 2004 #2
/
K-CD-2-2004.ISO
/
OpenOffice Sv
/
f_0397
/
python-core-2.2.2
/
lib
/
test
/
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
|
2003-07-18
|
226 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'