Extended Syntax for Decorators
Learn about extended syntax for decorators.
We'll cover the following...
Python 3.9 introduced a novelty for decorators with PEP-614, because a more general grammar is allowed. Before this enhancement, the syntax for invoking decorators (after the @) was restricted to very limited expressions, and not every single Python expression was ...
Ask