Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
I think fix the build issues?
Sorry I can't test I can't get make installed
  • Loading branch information
Gobot1234 committed Oct 8, 2025
commit 475bd8ee430c19d0f989870b23974ae0a6077877
8 changes: 4 additions & 4 deletions peps/pep-0718.rst
Original file line number Diff line number Diff line change
Expand Up @@ -234,10 +234,10 @@ Explicit specialisation will restrict the set of available overloads
reveal_type(make[int](1)) # type is int
reveal_type(make[int]("foo", "bar")) # Invalid: no overload for `make[int](x:str, y: str)` found, a similar overload exists but explicit specialisation prevented its use

Functions Parameterized by ``TypeVarTuple``s
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Currently type checkers disallow the use of multiple ``TypeVarTuple``s in it's generic
parameters, however it is currently valid to have a function as such
Functions Parameterized by ``TypeVarTuple``\ s
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Currently type checkers disallow the use of multiple ``TypeVarTuple`` \s in it's
generic parameters, however it is currently valid to have a function as such

.. code-block:: python

Expand Down
Loading