Revision 5359
Added by Aaron Marcuse-Kubitza about 12 years ago
sql.py | ||
---|---|---|
1021 | 1021 |
|
1022 | 1022 |
#### Expressions |
1023 | 1023 |
|
1024 |
def paren_re(re_): return r'(?:'+re_+r'|\('+re_+r'\))' |
|
1025 |
|
|
1026 | 1024 |
true_re = r'true' |
1027 | 1025 |
false_re = r'false' |
1028 | 1026 |
bool_re = r'(?:'+true_re+r'|'+false_re+r')' |
Also available in: Unified diff
sql.py: Removed no longer needed paren_re()