- Notifications
You must be signed in to change notification settings - Fork1.1k
typing Add fake classes to typing module (Issue #190)#297
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
pfalcon commentedNov 8, 2018
Thanks for the patch! Please note that micropython-lib upstream repository ishttps://github.com/pfalcon/micropython-lib . I'm merging this patch there and invite you to contribute further there. If you choose to do so, please be sure to read the contribution guidelines:https://github.com/pfalcon/micropython-lib/wiki/ContributorGuidelines |
stlehmann commentedNov 8, 2018
Thanks for info. I will make further contributions to the Upstream repository. |
jonnor commentedAug 25, 2024
This is the upstream repository for the MicroPython project. The referenced project is the upstream of the pycopy project. The base directory structure has been changed a bit in this repository. But apart from that the code in this merge request still seems relevant. |
Josverl commentedAug 26, 2024
I fully agree with the goal, |
jonnor commentedAug 27, 2024 via email
Good point about that merge request being closer to ready! I had not seenit. |
Addresses issue#190.
Adds fake typing classes to allow using type-annotations with special types like
Any,Unionor thecast()function within Micropython. The classes are without functionality.For proper type-checking use CPythonsmypy or similar type-checkers.