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

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
Post Reply
shaoziyang
Posts: 363
Joined: Sun Apr 17, 2016 1:55 pm

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

Post by shaoziyang » Wed Apr 21, 2021 3:25 pm

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

Post Reply