Point2D = TypedDict('Point2D', x=int, y=int, label=str)
- .. deprecated-removed:: 3.11 3.13
- The keyword-argument syntax is deprecated in 3.11 and will be removed
- in 3.13. It may also be unsupported by static type checkers.
+ .. deprecated-removed:: 3.11 3.13
+ The keyword-argument syntax is deprecated in 3.11 and will be removed
+ in 3.13. It may also be unsupported by static type checkers.
The functional syntax should also be used when any of the keys are not valid
:ref:`identifiers <identifiers>`, for example because they are keywords or contain hyphens.