blob: 8f16115410c02025dfbca8e4f8582c48fa8131fc [file] [log] [blame]
Guido van Rossum4d8e8591992-01-01 19:34:47 +00001# This module compiles a regular expression that recognizes Python tokens.
2# It is designed to match the working of the Python tokenizer exactly.
3# It takes care of everything except indentation;
4# note that un-escaped newlines are tokens, too.
5# tokenprog.regs[3] gives the location of the token without whitespace
6# It also defines various subexpressions, but doesn't compile them.
7# See the function test() below for an example of how to use.
8
9import regex
10
11# Note: to get a quoted backslash in a regexp, it must be quadrupled.
12
13Ignore = '[ \t]*\(\\\\\n[ \t]*\)*\(#.*\)?'
14
15Name = '[a-zA-Z_][a-zA-Z0-9_]*'
16
17Hexnumber = '0[xX][0-9a-fA-F]*[lL]?'
18Octnumber = '0[0-7]*[lL]?'
19Decnumber = '[1-9][0-9]*[lL]?'
20Intnumber = Hexnumber + '\|' + Octnumber + '\|' + Decnumber
21Exponent = '[eE][-+]?[0-9]+'
22Pointfloat = '\([0-9]+\.[0-9]*\|\.[0-9]+\)\(' + Exponent + '\)?'
23Expfloat = '[0-9]+' + Exponent
24Floatnumber = Pointfloat + '\|' + Expfloat
Guido van Rossum10d10ff1992-03-16 18:30:24 +000025Number = Floatnumber + '\|' + Intnumber
Guido van Rossum4d8e8591992-01-01 19:34:47 +000026
Guido van Rossumb31c7f71993-11-11 10:31:23 +000027String = '\'\(\\\\.\|[^\\\n\']\)*\'' + '\|' + '"\(\\\\.\|[^\\\n"]\)*"'
28# Note: this module *recognizes* double quotes, but for backward
29# compatibility, it doesn't *use* them!
Guido van Rossum4d8e8591992-01-01 19:34:47 +000030
31Operator = '~\|\+\|-\|\*\|/\|%\|\^\|&\||\|<<\|>>\|==\|<=\|<>\|!=\|>=\|=\|<\|>'
32Bracket = '[][(){}]'
33Special = '[:;.,`\n]'
34Funny = Operator + '\|' + Bracket + '\|' + Special
35
36PlainToken = Name + '\|' + Number + '\|' + String + '\|' + Funny
37
38Token = Ignore + '\(' + PlainToken + '\)'
39
40try:
41 save_syntax = regex.set_syntax(0) # Use default syntax
42 tokenprog = regex.compile(Token)
43finally:
Guido van Rossum10d10ff1992-03-16 18:30:24 +000044 if save_syntax != 0:
45 dummy = regex.set_syntax(save_syntax) # Restore original syntax
Guido van Rossum4d8e8591992-01-01 19:34:47 +000046
47
48def test(file):
49 f = open(file, 'r')
50 while 1:
51 line = f.readline()
52 if not line: break
53 i, n = 0, len(line)
54 while i < n:
55 j = tokenprog.match(line, i)
56 if j < 0:
57 print 'No token at', `line[i:i+20]` + '...'
58 i = i+1
59 else:
60 i = i+j
61 a, b = tokenprog.regs[3]
62 if a < b:
63 print 'Token:', `line[a:b]`