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 e55f97a commit 14a3c02Copy full SHA for 14a3c02
python-stdlib/typing/manifest.py
@@ -0,0 +1,3 @@
1
+metadata(version="0.0.1")
2
+
3
+module("typing.py")
python-stdlib/typing/typing.py
@@ -0,0 +1,13 @@
+"""
+Typing support. We don't have that.
4
+Thus this code works with CPython checkers but has minimal impact on MicroPython:
5
6
+ from typing import TYPE_CHECKING
7
+ if TYPE_CHECKING:
8
+ from typing import whatever, you, need
9
10
+ def foo() -> whatever:
11
+ ...
12
13
+TYPE_CHECKING = const(False)
0 commit comments