-
Notifications
You must be signed in to change notification settings - Fork 1.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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thanks for the patch! Please note that micropython-lib upstream repository is https://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
Thanks for info. I will make further contributions to the Upstream repository.
jonnor
commented
Aug 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
commented
Aug 26, 2024
I fully agree with the goal,
but IMHO this is superseded by #584
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 CPythons mypy or similar type-checkers.