comparison: Microbit/micropython.py
Microbit/micropython.py
- changeset 0
- b3daa2ebea2f
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 'micropython' module. |
|
8 """ |
|
9 |
|
10 def const(expr): |
|
11 pass |
|
12 |
|
13 def opt_level(): |
|
14 pass |
|
15 |
|
16 def opt_level(level): |
|
17 pass |
|
18 |
|
19 def mem_info(): |
|
20 pass |
|
21 |
|
22 def mem_info(verbose): |
|
23 pass |
|
24 |
|
25 def qstr_info(): |
|
26 pass |
|
27 |
|
28 def qstr_info(verbose): |
|
29 pass |
|
30 |
|
31 def stack_use(): |
|
32 pass |
|
33 |
|
34 def heap_lock(): |
|
35 pass |
|
36 |
|
37 def heap_unlock(): |
|
38 pass |
|
39 |
|
40 def kbd_intr(chr): |
|
41 pass |
|
42 |