From: sobolevn Date: Wed, 11 Sep 2024 18:25:23 +0000 (+0300) Subject: Fix "The Matrix" movie release year in `typing.rst` (#123965) X-Git-Tag: v3.14.0a1~516 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3bd942f106aa36c261a2d90104c027026b2a8fb6;p=thirdparty%2FPython%2Fcpython.git Fix "The Matrix" movie release year in `typing.rst` (#123965) --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index cb5b46f71673..fa7932061645 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.