MicroPython/sys.py

changeset 8
f706499906b8
parent 2
2c3f30af031d
--- 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

eric ide

mercurial