aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-07-20 15:47:42 +1000
committerDamien George <damien.p.george@gmail.com>2018-07-20 15:47:42 +1000
commit5b1ca6666839f7f894156c1b737463e0813bea19 (patch)
treef481b7d6cd95ea97dfb2891164130e2bb6f3ed52
parent84d5dd46fec2aa5a7c585e42927178acf2055405 (diff)
docs/library/index: Add hint about using help('modules') for discovery.
-rw-r--r--docs/library/index.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/library/index.rst b/docs/library/index.rst
index 337a05d41..3c425c49c 100644
--- a/docs/library/index.rst
+++ b/docs/library/index.rst
@@ -40,6 +40,11 @@ best place to find general information of the availability/non-availability
of a particular feature is the "General Information" section which contains
information pertaining to a specific `MicroPython port`.
+On some ports you are able to discover the available, built-in libraries that
+can be imported by entering the following at the REPL::
+
+ help('modules')
+
Beyond the built-in libraries described in this documentation, many more
modules from the Python standard library, as well as further MicroPython
extensions to it, can be found in `micropython-lib`.