diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-17 04:45:13 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-17 04:45:13 (GMT) |
commit | 9b8d801c37fa29420848ebc1b50c601893b36287 (patch) | |
tree | 3e21590bf1bc994dc998ae3c7cadffd1e567ad61 /Lib/tokenize.py | |
parent | de9fec5f99179bfd023177b89238f8aaae98f1f9 (diff) | |
download | cpython-9b8d801c37fa29420848ebc1b50c601893b36287.zip cpython-9b8d801c37fa29420848ebc1b50c601893b36287.tar.gz cpython-9b8d801c37fa29420848ebc1b50c601893b36287.tar.bz2 |
Convert some old-style string exceptions to class exceptions.
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 1383f21..a225211 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py @@ -76,7 +76,10 @@ endprogs = {"'": re.compile(Single), '"': re.compile(Double), "R'''": single3prog, 'R"""': double3prog, 'r': None, 'R': None} tabsize = 8 -TokenError = 'TokenError' + +class TokenError(Exception): + pass + def printtoken(type, token, (srow, scol), (erow, ecol), line): # for testing print "%d,%d-%d,%d:\t%s\t%s" % \ (srow, scol, erow, ecol, tok_name[type], repr(token)) |