Closed kaushikcfd closed 1 year ago
@kaushikcfd any reason this is still open after #58 was merged?
Yep, it was indeed fixed. Thanks!
For posterity, it can be verified as:
>>> import pymbolic as p
>>> p.__version__
'2022.2'
>>> p.parse("False")
False
>>> p.parse("True")
True
>>> p.parse("True or False")
LogicalOr((True, False))
Minimal reproducer: