codon
codon copied to clipboard
Metaclasses
Are there any plans to support metaclasses? Codon gives syntax error when using class Klass(metaclass=...)
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 types library from Python, but it doesn't solve this problem.