(self, i: int, j: int | None = None)
| 134 | class="st">""class="st">"test pytest.deprecated_call()"class="st">"" |
| 135 | |
| 136 | def dep(self, i: int, j: int | None = None) -> int: |
| 137 | if i == 0: |
| 138 | warnings.warn(class="st">"is deprecated", DeprecationWarning, stacklevel=1) |
| 139 | return 42 |
| 140 | |
| 141 | def dep_explicit(self, i: int) -> None: |
| 142 | if i == 0: |
no test coverage detected