[cmath] Rename positional-only param in log (#14897)

This commit is contained in:
Semyon Moroz
2025-10-19 19:31:11 +04:00
committed by GitHub
parent 1acc29009e
commit 11e7d904b9
+1 -1
View File
@@ -23,7 +23,7 @@ def exp(z: _C, /) -> complex: ...
def isclose(a: _C, b: _C, *, rel_tol: SupportsFloat = 1e-09, abs_tol: SupportsFloat = 0.0) -> bool: ...
def isinf(z: _C, /) -> bool: ...
def isnan(z: _C, /) -> bool: ...
def log(x: _C, base: _C = ..., /) -> complex: ...
def log(z: _C, base: _C = ..., /) -> complex: ...
def log10(z: _C, /) -> complex: ...
def phase(z: _C, /) -> float: ...
def polar(z: _C, /) -> tuple[float, float]: ...