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
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:
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.
Sorry, something went wrong.
I tried to import types library from Python, but it doesn't solve this problem.
types
Not yet supported; please see #606 for the current progress.
No branches or pull requests
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: