comparison: MicroPython/gc.py
MicroPython/gc.py
- changeset 0
- b3daa2ebea2f
- child 8
- f706499906b8
equal
deleted
inserted
replaced
|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module containing stubs for API generation of the 'gc' module. |
|
8 """ |
|
9 |
|
10 def enable(): |
|
11 pass |
|
12 |
|
13 def disable(): |
|
14 pass |
|
15 |
|
16 def collect(): |
|
17 pass |
|
18 |
|
19 def mem_alloc(): |
|
20 pass |
|
21 |
|
22 def mem_free(): |
|
23 pass |
|
24 |
|
25 def threshold(): |
|
26 pass |
|
27 |
|
28 def threshold(amount): |
|
29 pass |