c737d5bd0c
Main list of ports: * Replace deprecated operator '<>' by '!='. * To check if a list is empty, do not compare to [], but check it's length instead. * Do not make a class inherit indirectly twice from the same base class. * Hurricane physical object constructors uses DbU::Unit as arguments, seen as int in Python, so they will not match float. Unfortunately the calculation often gives float. So explicitely cast them into int. This is due to a change of behavior in Python. Now, 3/2 gives 1.5 (float). To get the previous one use: 3/2 -> 1 (int). * dict.keys()[0] no longer work, instead use list(dict.keys())[0]. |
||
---|---|---|
.. | ||
doc | ||
python | ||
CMakeLists.txt |