From bbec2ea88fcf0e9fb1c07d76103f058a8bc07ed3 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 23 Sep 2024 20:34:44 +0200 Subject: [PATCH] [3.13] Fix "The Matrix" movie release year in `typing.rst` (GH-123965) (#123966) Fix "The Matrix" movie release year in `typing.rst` (GH-123965) (cherry picked from commit 3bd942f106aa36c261a2d90104c027026b2a8fb6) Co-authored-by: sobolevn --- Doc/library/typing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index aaf789b626f8..aec7d4119a76 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1316,7 +1316,7 @@ These can be used as types in annotations. They all support subscription using year: int def mutate_movie(m: Movie) -> None: - m["year"] = 1992 # allowed + m["year"] = 1999 # allowed m["title"] = "The Matrix" # typechecker error There is no runtime checking for this property. -- 2.47.3