@@ -1295,7 +1295,7 @@ These can be used as types in annotations. They all support subscription using
12951295 :data: `ClassVar ` is not a class itself, and cannot
12961296 be used with :func: `isinstance ` or :func: `issubclass `.
12971297 :data: `ClassVar ` does not change Python runtime behavior, but
1298- it can be used by third-party type checkers. For example, a type checker
1298+ it can be used by static type checkers. For example, a type checker
12991299 might flag the following code as an error::
13001300
13011301 enterprise_d = Starship(3000)
@@ -1365,7 +1365,7 @@ These can be used as types in annotations. They all support subscription using
13651365
13661366 def mutate_movie(m: Movie) -> None:
13671367 m["year"] = 1999 # allowed
1368- m["title"] = "The Matrix" # typechecker error
1368+ m["title"] = "The Matrix" # type checker error
13691369
13701370 There is no runtime checking for this property.
13711371
@@ -2535,7 +2535,7 @@ types.
25352535
25362536 Helper class to create low-overhead :ref: `distinct types <distinct >`.
25372537
2538- A ``NewType `` is considered a distinct type by a typechecker . At runtime,
2538+ A ``NewType `` is considered a distinct type by a type checker . At runtime,
25392539 however, calling a ``NewType `` returns its argument unchanged.
25402540
25412541 Usage::
@@ -2898,7 +2898,7 @@ types.
28982898
28992899 For backwards compatibility with Python 3.10 and below,
29002900 it is also possible to use inheritance to declare both required and
2901- non-required keys in the same ``TypedDict `` . This is done by declaring a
2901+ non-required keys in the same ``TypedDict ``. This is done by declaring a
29022902 ``TypedDict `` with one value for the ``total `` argument and then
29032903 inheriting from it in another ``TypedDict `` with a different value for
29042904 ``total ``:
@@ -3763,7 +3763,7 @@ Constant
37633763
37643764.. data :: TYPE_CHECKING
37653765
3766- A special constant that is assumed to be ``True `` by 3rd party static
3766+ A special constant that is assumed to be ``True `` by static
37673767 type checkers. It's ``False `` at runtime.
37683768
37693769 A module which is expensive to import, and which only contain types
0 commit comments