bastikr / boolean.py

Implements boolean algebra in one module.
BSD 2-Clause "Simplified" License
78 stars 34 forks source link

"a or b c" is not a valid expression but does not raise an Exception on parsing #60

Open pombredanne opened 7 years ago

pombredanne commented 7 years ago

a or b c is not a valid expression but does not raise an Exception on parsing. Instead we get this: OR(Symbol('a'), Symbol('b'), Symbol('c')) which is incorrect.

pombredanne commented 7 years ago

this is a serious error and I am working on it right away!