QUERY · ISSUE
Method Resolution Order (MRO) is not compliant
py-core
uPy currently implements depth-first MRO, which is equivalent to one used pre-Python2.2.
References:
- http://python-history.blogspot.com/2010/06/method-resolution-order.html
- https://www.python.org/download/releases/2.3/mro/
CANDIDATE · ISSUE
RFC: class.mro() is notimpl
rfcpy-core
https://docs.python.org/3.5/library/stdtypes.html#class.mro
Lack of it can be annoying for writing proxy objects, missing .__bases__ and no mro() means no access to class hierachy at runtime for user defined classes.