micropython / micropython-lib

Core Python libraries ported to MicroPython
Other
2.3k stars 980 forks source link

all: remove u-module naming where possible #880

Closed dpgeorge closed 2 weeks ago

dpgeorge commented 3 weeks ago

This changes almost all uses of "u-module" to just "module" for the following built-in modules:

There are some remaining uses of "u-module" naming, for the cases where the built-in module is extended in Python, eg python-stdlib/os uses uos.

Also, there are remaining uses of utime when non-standard (compared to CPython) functions are used, like utime.ticks_ms().