aboutsummaryrefslogtreecommitdiff
path: root/docs/library/sys.rst
AgeCommit message (Collapse)Author
2020-09-04all: Rename "sys" module to "usys".stijn
This is consistent with the other 'micro' modules and allows implementing additional features in Python via e.g. micropython-lib's sys. Note this is a breaking change (not backwards compatible) for ports which do not enable weak links, as "import sys" must now be replaced with "import usys".
2020-01-12docs/library: Add / to indicate positional-only args in library docs.Jason Neal
Removes the confusion of positional-only arguments which have defaults that look like keyword arguments.
2019-08-15docs/library: Document that sys.version_info returns a 3-tuple only.Tom McDermott
See issue #4970.
2019-08-15docs/library/sys: Add documentation for sys.atexit function.Damien George
2017-12-04docs/library: Add xrefs to "stream" dictionary entry for many modules.Paul Sokolovsky
2017-08-22docs: Consistently link to micropython-lib in glossary.Paul Sokolovsky
2017-07-02docs/library: Add CPython docs xref to each pertinent module.Paul Sokolovsky
Cross-reference text/link is implemented as RST substitution, so easy to consistently.
2017-06-28docs/{micropython,sys,uos}: Use markup adhering to the latest docs conventions.Paul Sokolovsky
2016-06-18docs/sys: print_exception: Fixes/clarifications.Paul Sokolovsky
2016-06-10docs/sys: Detailed description of print_exception() diff from traceback module.Paul Sokolovsky
2016-05-01docs/sys: Describe sys.platform is port-neutral manner.Paul Sokolovsky
2016-05-01docs/sys: Describe sys.maxsize.Paul Sokolovsky
2016-05-01docs/sys: Describe sys.implementation.Paul Sokolovsky
2016-05-01docs/sys: Clean up print_exception() description.Paul Sokolovsky
2016-05-01docs/sys: Clarify description of sys.exit().Paul Sokolovsky
2016-05-01docs/sys: Make module variable descriptions proper sentences.Paul Sokolovsky
2016-05-01docs/sys: Remove port-specific details from description of stdin/out/err.Paul Sokolovsky
2016-05-01docs/sys: Document sys.modules.Paul Sokolovsky
2015-06-04docs: Change "Micro Python" to "MicroPython" in all places in docs.Damien George
2014-12-22docs: Make admonition for CPy-difference use "attention" class.Damien George
This renders it in yellow/orange box on RTD server.
2014-12-19docs: Add CPy diff note for print_exception; embellish sys.platform.Damien George
2014-12-10docs: Add sys.print_exception().Paul Sokolovsky
2014-10-31docs: Cleanup and update some docs.Damien George
2014-10-31docs: Import documentation from source-code inline comments.Damien George
The inline docs (prefixed with /// in .c files) have been converted to RST format and put in the docs subdirectory.