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
https://www.python.org/dev/peps/pep-3115/
You get a parser error when trying to parse this simple code: class Foo(Bar, metaclass=Baz): pass
class Foo(Bar, metaclass=Baz): pass
The text was updated successfully, but these errors were encountered:
Test:
def test_metaclass(): check_dumps("class Foo(Bar, Quux, metaclass=Baz, foo=bar): pass\n") check_dumps("class Foo(*bases, **kwargs): pass\n")
Sorry, something went wrong.
No branches or pull requests
https://www.python.org/dev/peps/pep-3115/
You get a parser error when trying to parse this simple code:
class Foo(Bar, metaclass=Baz): pass
The text was updated successfully, but these errors were encountered: