From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 23 Jun 2024 16:23:01 +0000 (+0200) Subject: [3.12] Typing docs: normalize some indents in code examples (GH-120912) (#120916) X-Git-Tag: v3.12.5~179 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=673cabc23b268374a96cc7b630654879df43fdd9;p=thirdparty%2FPython%2Fcpython.git [3.12] Typing docs: normalize some indents in code examples (GH-120912) (#120916) Co-authored-by: Nyakku Shigure --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 3d75573c1337..86c4dc303c30 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -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 @@ -1749,8 +1750,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)