]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] Typing docs: normalize some indents in code examples (GH-120912) (#120915)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 23 Jun 2024 16:31:40 +0000 (18:31 +0200)
committerGitHub <noreply@github.com>
Sun, 23 Jun 2024 16:31:40 +0000 (16:31 +0000)
Co-authored-by: Nyakku Shigure <sigure.qaq@gmail.com>
Doc/library/typing.rst

index 6a369292048a2384322dfd441c529ebc0ef3afd8..8e334e982b1458031ed5faa217eab36c3df275eb 100644 (file)
@@ -97,8 +97,9 @@ Type aliases are useful for simplifying complex type signatures. For example::
    # The static type checker will treat the previous type signature as
    # being exactly equivalent to this one.
    def broadcast_message(
-           message: str,
-           servers: Sequence[tuple[tuple[str, int], dict[str, str]]]) -> None:
+       message: str,
+       servers: Sequence[tuple[tuple[str, int], dict[str, str]]]
+   ) -> None:
        ...
 
 The :keyword:`type` statement is new in Python 3.12. For backwards
@@ -1871,8 +1872,8 @@ without the dedicated syntax, as documented below.
    of ``*args``::
 
       def call_soon[*Ts](
-               callback: Callable[[*Ts], None],
-               *args: *Ts
+          callback: Callable[[*Ts], None],
+          *args: *Ts
       ) -> None:
           ...
           callback(*args)