Skip to content

Commit 27a41e3

Browse files
committed
add ...
1 parent a31eabd commit 27a41e3

File tree

1 file changed

+4
-4
lines changed
  • test-data/pybind11_fixtures/expected_stubs_no_docs/pybind11_fixtures

1 file changed

+4
-4
lines changed

test-data/pybind11_fixtures/expected_stubs_no_docs/pybind11_fixtures/demo.pyi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ class Point:
5757

5858
def answer() -> int: ...
5959
def midpoint(left: float, right: float) -> float: ...
60-
def pos_kw_only_mix(i: int, /, j: int, *, k: int) -> tuple:
61-
def pos_only_all(i: int, j: int, /) -> tuple:
62-
def pos_only_def_mix(i: int, j: int = ..., /, k: int = ...) -> tuple:
63-
def pos_only_mix(i: int, /, j: int) -> tuple:
60+
def pos_kw_only_mix(i: int, /, j: int, *, k: int) -> tuple: ...
61+
def pos_only_all(i: int, j: int, /) -> tuple: ...
62+
def pos_only_def_mix(i: int, j: int = ..., /, k: int = ...) -> tuple: ...
63+
def pos_only_mix(i: int, /, j: int) -> tuple: ...
6464
def sum(arg0: int, arg1: int) -> int: ...
6565
def weighted_midpoint(left: float, right: float, alpha: float = ...) -> float: ...

0 commit comments

Comments
 (0)