File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -2294,17 +2294,17 @@ without the dedicated syntax, as documented below.
22942294
22952295 .. rubric :: Unpacking
22962296
2297- Type aliases support star unpacking using the ``*Alias `` syntax.
2298- This is equivalent to using ``Unpack[Alias] `` directly:
2297+ Type aliases support star unpacking using the ``*Alias `` syntax.
2298+ This is equivalent to using ``Unpack[Alias] `` directly:
22992299
2300- .. doctest ::
2300+ .. doctest ::
23012301
2302- >>> type Alias = tuple[int , str ]
2303- >>> type Unpacked = tuple[bool , * Alias]
2304- >>> Unpacked.__value__
2305- tuple[bool, typing.Unpack[Alias]]
2302+ >>> type Alias = tuple[int , str ]
2303+ >>> type Unpacked = tuple[bool , * Alias]
2304+ >>> Unpacked.__value__
2305+ tuple[bool, typing.Unpack[Alias]]
23062306
2307- .. versionadded :: next
2307+ .. versionadded :: next
23082308
23092309
23102310Other special directives
You can’t perform that action at this time.
0 commit comments