We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
With the current version of symengine (symengine-0.6.0) the following returns True
True
import symengine as se x = se.S('x') expr = se.Eq(x, 0) print(bool(expr))
The outcome I expected was a TypeError as in sympy