-
Notifications
You must be signed in to change notification settings - Fork 520
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
Metaclasses #361
Comments
Can't speak for what codon does or will support. This is general conversation about Python metaclass. Recent change occurred, which depreciates metaclass in favor of __init_subclass__ So the codon devs can get away with not supporting metaclasses in favor of __init_subclass__ Metaclasses run into metaclass conflicts that are resolvable, but the syntax is awkward and non-intuitive. |
I tried to import |
Not yet supported; please see #606 for the current progress. |
Are there any plans to support metaclasses?
Codon gives syntax error when using class Klass(metaclass=...)
The text was updated successfully, but these errors were encountered: