diff options
author | Guido van Rossum <guido@python.org> | 1997-10-27 22:15:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-27 22:15:06 (GMT) |
commit | 0874f7fdafe696f065e56e87616e32fc88f8e1f9 (patch) | |
tree | 66dcf2f5af664f63ae9f628c14d92cd1a3ed661b /Lib/test/test_tokenize.py | |
parent | fefc922cef9d89bb6e3d12dc3d2f16e3f49d7250 (diff) | |
download | cpython-0874f7fdafe696f065e56e87616e32fc88f8e1f9.zip cpython-0874f7fdafe696f065e56e87616e32fc88f8e1f9.tar.gz cpython-0874f7fdafe696f065e56e87616e32fc88f8e1f9.tar.bz2 |
Tests for tokenize.py (Ka-Ping Yee)
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py new file mode 100644 index 0000000..34a7bfb --- /dev/null +++ b/Lib/test/test_tokenize.py @@ -0,0 +1,22 @@ +from test_support import verbose +import tokenize, os, sys + +def findfile(file): + if os.path.isabs(file): return file + path = sys.path + try: + path = [os.path.dirname(__file__)] + path + except NameError: + pass + for dn in path: + fn = os.path.join(dn, file) + if os.path.exists(fn): return fn + return file + +if verbose: + print 'starting...' +file = open(findfile('tokenize_tests.py')) +tokenize.tokenize(file.readline) +if verbose: + print 'finished' + |