Skip to content
Merged
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
2 changes: 1 addition & 1 deletion conformance/tests/historical_positional.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def f1(__x: int, __y__: int = 0) -> None: ...
def f2(x: int, __y: int) -> None: ... # E


def f3(x: int, *args: int, __y: int) -> None: ... # OK
def f3(x: int, *args: int, __y: int) -> None: ... # E?
Comment thread
AlexWaygood marked this conversation as resolved.


f3(3, __y=3) # OK
Expand Down