timefold-solver
timefold-solver copied to clipboard
jpyinterpreter - float, int str constructor support
Python float and int accept str as constructor arguments, so jpyinterpreter should too.
Expected behaviour:
a = float('inf')
b = float('1.0')
assert a == infinity
assert b == 1.0