-
Notifications
You must be signed in to change notification settings - Fork 4
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
MicroPython implementation and tests #96
Comments
MicroPython implements a significantly reduced class hierarchy in its At the very least, despite being
|
Might be worth just testing MP at stdio-mgr v1.0.1, modded to remove attrs. |
MicroPython appears to have crippled
|
Given the above, @jayvdb, I'm at a loss as to how to implement even basic stream wraps/mocks. I think MicroPython may be a nonstarter. |
MicroPython types appear not to implement
.mro()
, in either the Python 2 or Python 3 forms:Is there a way to introspect the inheritance hierarchy in MP?
Also: Yikes, the MRO itself is not CPython-compliant.
Adapted from original post by @bskinn in #81 (comment)
The text was updated successfully, but these errors were encountered: