diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2015-07-28 13:10:06 +0000 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2015-07-28 13:10:06 +0000 |
commit | 78058599d96d17eef108169a2f963818e0401cbd (patch) | |
tree | 182b9dc982d0b741f84df7899f822bfffe767519 /src/examples/select_parser.py | |
parent | d1296113818a4e2b9ab8c2ce72c84ca27d2b0f81 (diff) | |
download | pyparsing-git-78058599d96d17eef108169a2f963818e0401cbd.tar.gz |
Remove duplicate '||' operator in select_parser.py example
Diffstat (limited to 'src/examples/select_parser.py')
-rw-r--r-- | src/examples/select_parser.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/examples/select_parser.py b/src/examples/select_parser.py index 7326cc9..677fd11 100644 --- a/src/examples/select_parser.py +++ b/src/examples/select_parser.py @@ -73,7 +73,6 @@ expr << operatorPrecedence(expr_term, (oneOf('<< >> & |'), BINARY, opAssoc.LEFT),
(oneOf('< <= > >='), BINARY, opAssoc.LEFT),
(oneOf('= == != <>') | IS | IN | LIKE | GLOB | MATCH | REGEXP, BINARY, opAssoc.LEFT),
- ('||', BINARY, opAssoc.LEFT),
((BETWEEN,AND), TERNARY, opAssoc.LEFT),
(IN + LPAR + Group(select_stmt | delimitedList(expr)) + RPAR, UNARY, opAssoc.LEFT),
(AND, BINARY, opAssoc.LEFT),
|