Skip to content

Commit 11e7d90

Browse files
authored
[cmath] Rename positional-only param in log (#14897)
1 parent 1acc290 commit 11e7d90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/cmath.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def exp(z: _C, /) -> complex: ...
2323
def isclose(a: _C, b: _C, *, rel_tol: SupportsFloat = 1e-09, abs_tol: SupportsFloat = 0.0) -> bool: ...
2424
def isinf(z: _C, /) -> bool: ...
2525
def isnan(z: _C, /) -> bool: ...
26-
def log(x: _C, base: _C = ..., /) -> complex: ...
26+
def log(z: _C, base: _C = ..., /) -> complex: ...
2727
def log10(z: _C, /) -> complex: ...
2828
def phase(z: _C, /) -> float: ...
2929
def polar(z: _C, /) -> tuple[float, float]: ...

0 commit comments

Comments
 (0)