Let’s verify each of these claims with concrete evidence from the release.
: If you misspell a keyword argument in a function call, the interpreter now explicitly prints a suggestion for the correct argument name.
Example (verified):
from typing import Generic, TypeVar T = TypeVar("T", default=str) class Box(Generic[T]): def __init__(self, content: T): self.content = content # Defaults to Box[str] default_box = Box("Hello") Use code with caution. The @deprecated Decorator (PEP 702)