MicroPython/gc.py

changeset 0
b3daa2ebea2f
child 8
f706499906b8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MicroPython/gc.py	Sat Aug 24 17:04:25 2019 +0200
@@ -0,0 +1,29 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module containing stubs for API generation of the 'gc' module.
+"""
+
+def enable():
+    pass
+
+def disable():
+    pass
+
+def collect():
+    pass
+
+def mem_alloc():
+    pass
+
+def mem_free():
+    pass
+
+def threshold():
+    pass
+
+def threshold(amount):
+    pass

eric ide

mercurial