Page 1 of 1

round(1,1) will raise NotImplementedError in windows port

Posted: Wed Apr 21, 2021 3:25 pm
by shaoziyang
round(1,1) will raise NotImplementedError in windows port. It woks in other port.

Code: Select all

>>> round(1,1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NotImplementedError:
>>> round(1.0,1)
1.0