--- a/MicroPython/sys.py Thu Aug 29 19:05:05 2019 +0200 +++ b/MicroPython/sys.py Thu Aug 29 19:05:30 2019 +0200 @@ -7,15 +7,6 @@ Module containing stubs for API generation of the 'sys' module. """ -def exit(retval=0): - pass - -def atexit(func): - pass - -def print_exception(exc, file=sys.stdout): - pass - argv = [] byteorder = "" implementation = tuple() @@ -28,3 +19,12 @@ stdout = 1 version = "" version_info = tuple() + +def exit(retval=0): + pass + +def atexit(func): + pass + +def print_exception(exc, file=stdout): + pass