We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a35d0 commit cf8d439Copy full SHA for cf8d439
publish/micropython-stdlib-stubs/build.py
@@ -129,7 +129,13 @@
129
# comment out some lines to hide the existance of CPython apis that do not exists in MicroPython
130
COMMENT_OUT_LINES = [
131
("asyncio", ["from .subprocess import *"]),
132
- ("os", ["from . import path as _path"]),
+ (
133
+ "os",
134
+ [
135
+ "from . import path as _path",
136
+ "def _exit(status: int) -> NoReturn: ...",
137
+ ],
138
+ ),
139
]
140
141
# change some lines to hide the existance of CPython apis that do not exists in MicroPython
0 commit comments