summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library
diff options
context:
space:
mode:
authorFrancis Dela Cruz <rainyworlds1@outlook.com>2023-08-21 12:32:20 +0930
committerDamien George <damien@micropython.org>2023-09-04 22:40:56 +1000
commitd00105494fda537b42a73843260920bba8eb1bb8 (patch)
treed502be329cba240fa337965fa4ef063b83aaa7e0 /docs/library
parentbf35eefc625b35aa301aefbc743dcf1395829865 (diff)
downloadmicropython-d00105494fda537b42a73843260920bba8eb1bb8.tar.gz
micropython-d00105494fda537b42a73843260920bba8eb1bb8.zip
docs/library/platform: Add docs for the platform library.
Signed-off-by: Francis Dela Cruz <rainyworlds1@outlook.com>
Diffstat (limited to 'docs/library')
-rw-r--r--docs/library/index.rst1
-rw-r--r--docs/library/platform.rst38
2 files changed, 39 insertions, 0 deletions
diff --git a/docs/library/index.rst b/docs/library/index.rst
index ae5d3e7d71..4a7f78ecf3 100644
--- a/docs/library/index.rst
+++ b/docs/library/index.rst
@@ -71,6 +71,7 @@ library.
json.rst
math.rst
os.rst
+ platform.rst
random.rst
re.rst
select.rst
diff --git a/docs/library/platform.rst b/docs/library/platform.rst
new file mode 100644
index 0000000000..c091477d84
--- /dev/null
+++ b/docs/library/platform.rst
@@ -0,0 +1,38 @@
+:mod:`platform` -- access to underlying platform’s identifying data
+===================================================================
+
+.. module:: platform
+ :synopsis: access to underlying platform’s identifying data
+
+|see_cpython_module| :mod:`python:platform`.
+
+This module tries to retrieve as much platform-identifying data as possible. It
+makes this information available via function APIs.
+
+Functions
+---------
+
+.. function:: platform()
+
+ Returns a string identifying the underlying platform. This string is composed
+ of several substrings in the following order, delimited by dashes (``-``):
+
+ - the name of the platform system (e.g. Unix, Windows or MicroPython)
+ - the MicroPython version
+ - the architecture of the platform
+ - the version of the underlying platform
+ - the concatenation of the name of the libc that MicroPython is linked to
+ and its corresponding version.
+
+ For example, this could be
+ ``"MicroPython-1.20.0-xtensa-IDFv4.2.4-with-newlib3.0.0"``.
+
+.. function:: python_compiler()
+
+ Returns a string identifying the compiler used for compiling MicroPython.
+
+.. function:: libc_ver()
+
+ Returns a tuple of strings *(lib, version)*, where *lib* is the name of the
+ libc that MicroPython is linked to, and *version* the corresponding version
+ of this libc.