11MicroPython libraries
22=====================
33
4- This chapter described modules (function and class libraries) which are built
5- into MicroPython. There are few categories of modules:
6-
7- * Modules which implement subset of standard Python functionality and are not
8- intended to be extended by a user.
9- * Modules which are implement subset of Python functionality, with a provision
10- for extension by a user (via Python code).
11- * Modules which implement MicroPython extensions to Python standard libraries.
4+ This chapter describes modules (function and class libraries) which are built
5+ into MicroPython. There are a few categories of modules:
6+
7+ * Modules which implement a subset of standard Python functionality and are not
8+ intended to be extended by the user.
9+ * Modules which implement a subset of Python functionality, with a provision
10+ for extension by the user (via Python code).
11+ * Modules which implement MicroPython extensions to the Python standard libraries.
1212* Modules specific to a particular port and thus not portable.
1313
1414Note about the availability of modules and their contents: This documentation
@@ -18,11 +18,11 @@ each port to a particular board/embedded system makes available only a subset
1818of MicroPython libraries. For officially supported ports, there is an effort
1919to either filter out non-applicable items, or mark individual descriptions
2020with "Availability:" clauses describing which ports provide a given feature.
21- With that in mind, please still be ready to a fact that some function/class
22- in a module, or even entire module, described in this documentation, may be
23- not available in a particular build of MicroPython on a particular board. The
24- best place to find a general information of the availability/non-availability
25- of a particular feature is "General Information" secton which contains
21+ With that in mind, please still be warned that some functions/classes
22+ in a module ( or even the entire module) described in this documentation may be
23+ unavailable in a particular build of MicroPython on a particular board. The
24+ best place to find general information of the availability/non-availability
25+ of a particular feature is the "General Information" section which contains
2626information pertaining to a specific port.
2727
2828Beyond the built-in libraries described in this documentation, many more
0 commit comments