0
votes
1answer
61 views

syntactic whitespaces with pyparsing's operatorPrecedence

is it possible to use some number of spaces as a delimeter? what i mean is... given some python operator-precedence parser, i want to mix natural language with operators, in a shorthand for taking ...
5
votes
1answer
188 views

Nesting delimited lists in pyparsing without causing infinite recursion?

I have the following toy grammar in Pyparsing: import pyparsing as pp or_tok = "or" and_tok = "and" lparen = pp.Suppress("(") rparen = pp.Suppress(")") Word = pp.Word(pp.alphas)("Word") Phrase = ...
2
votes
2answers
211 views

Change operator precedence in Python

I have overloaded some Python operators, arithmetic and boolean. The Python precedence rules remain in effect, which is unnatural for the overloaded operators, leading to lots of parentheses in ...
2
votes
0answers
149 views

pyparsing operatorprecedence to parse empty query

I am using pyparsing.operatorprecedence to parse infix notation query. The code is filterExpr = pp.quotedString.setParseAction(pp.removeQuotes) |\ pp.Word(pp.printables, ...
8
votes
1answer
131 views

How does operator binding work in this Python example?

I've recently stumbled over this expression: True == False in (False,) It evaluates to False, but I don't understand why. True == False is False and False in (False,) is True, so both (to me) ...
114
votes
1answer
2k views

Why does (1 in [1,0] == True) evaluate to False?

When I was looking at answers to this question, I found I didn't understand my own answer. I don't really understand how this is being parsed. Why does the second example return False? >>> ...
3
votes
4answers
430 views

Operator precedence

Consider this C# class: class Node { public Node Next; } And consider these 2 cases: Node A = new Node(); Node B = A; B=(B.Next = new Node()); and Node A = ...