diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-01 22:20:49 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-01 22:20:49 +0300 |
commit | d42bb58c33d667eb9de79ebd3ffa56f97739e63e (patch) | |
tree | c882e6a94f2364b012b3b5b6b1150e54ba3289cd /docs/library | |
parent | 8b7d31159506d1708c18704f4c8bda69dddcfdb8 (diff) | |
download | micropython-d42bb58c33d667eb9de79ebd3ffa56f97739e63e.tar.gz micropython-d42bb58c33d667eb9de79ebd3ffa56f97739e63e.zip |
docs/builtins: Add AssertionError, SyntaxError, ZeroDivisionError.
Also, update heading of 1st sections to "Functions and types".
Diffstat (limited to 'docs/library')
-rw-r--r-- | docs/library/builtins.rst | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/docs/library/builtins.rst b/docs/library/builtins.rst index 32442e3a80..658d46ecd1 100644 --- a/docs/library/builtins.rst +++ b/docs/library/builtins.rst @@ -4,8 +4,8 @@ Builtin functions and exceptions All builtin functions and exceptions are described here. They are also available via ``builtins`` module. -Functions and classes ---------------------- +Functions and types +------------------- .. function:: abs() @@ -152,6 +152,8 @@ Functions and classes Exceptions ---------- +.. exception:: AssertionError + .. exception:: AttributeError .. exception:: Exception @@ -176,8 +178,12 @@ Exceptions .. exception:: StopIteration +.. exception:: SyntaxError + .. exception:: SystemExit .. exception:: TypeError .. exception:: ValueError + +.. exception:: ZeroDivisionError |