@@ -12,17 +12,9 @@ Functions
1212.. function :: exit(retval=0, /)
1313
1414 Terminate current program with a given exit code. Underlyingly, this
15- function raise as `SystemExit ` exception. If an argument is given, its
15+ function raises a `SystemExit ` exception. If an argument is given, its
1616 value given as an argument to `SystemExit `.
1717
18- .. function :: print_exception(exc, file=sys.stdout, /)
19-
20- This function is deprecated and will be removed starting in
21- CircuitPython 10.x, `traceback.print_exception() ` should be used instead.
22-
23- Print exception with a traceback to a file-like object *file * (or
24- `sys.stdout ` by default).
25-
2618 .. admonition :: Difference to CPython
2719 :class: attention
2820
@@ -52,6 +44,8 @@ Constants
5244 * *version * - tuple (major, minor, micro), e.g. (1, 7, 0)
5345 * *_machine * - string describing the underlying machine
5446 * *_mpy * - supported mpy file-format version (optional attribute)
47+ * *_build * - string that can help identify the configuration that
48+ MicroPython was built with
5549
5650 This object is the recommended way to distinguish CircuitPython from other
5751 Python implementations (note that it still may not exist in the very
@@ -116,15 +110,15 @@ Constants
116110
117111.. data :: stderr
118112
119- Standard error `` stream ` `.
113+ Standard error `stream `.
120114
121115.. data :: stdin
122116
123- Standard input `` stream ` `.
117+ Standard input `stream `.
124118
125119.. data :: stdout
126120
127- Standard output `` stream ` `.
121+ Standard output `stream `.
128122
129123.. data :: version
130124
0 commit comments