We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello !
I tried to declare a multiple inheritance for one of my class but receive a syntax error because i used a , in my class inheritance declaration.
,
# script: python class Parent1: pass class Parent2: pass class Child(Parent1,Parent2): pass def TIC(): cls(5) print("HELLO WORLD!",84,84)
As I can see micropython should support multiple inheritance. Is there an issue with it ?
Thanks in advance this project is awesome 😊
The text was updated successfully, but these errors were encountered:
But if you are working with pocketpy, this is not implemented yet : https://pocketpy.dev/features/differences/#unimplemented-features (point 6)
Sorry, something went wrong.
It is indeed pocketpy. I think adding this would require switching python implementation.
No branches or pull requests
Hello !
I tried to declare a multiple inheritance for one of my class but receive a syntax error because i used a
,
in my class inheritance declaration.As I can see micropython should support multiple inheritance. Is there an issue with it ?
Thanks in advance this project is awesome 😊
The text was updated successfully, but these errors were encountered: