You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since version 0.5.1 the explicit type comparisions on operators like <, > != == etc has been removed.
The explicit tests has been implemented to ensure a defined behaviour among different versions of python. Unfortuantey the behaviour has changed between python 2.x and 3.x for some operators. Further it was a design decision to enforce the same type of values when doing operations.
In the current version of brabbel this isn't present anymore. I expect to get a Exception when trying to evaluate a expression when some types does not match.
Since version 0.5.1 the explicit type comparisions on operators like <, > != == etc has been removed.
The explicit tests has been implemented to ensure a defined behaviour among different versions of python. Unfortuantey the behaviour has changed between python 2.x and 3.x for some operators. Further it was a design decision to enforce the same type of values when doing operations.
In the current version of brabbel this isn't present anymore. I expect to get a Exception when trying to evaluate a expression when some types does not match.