From 11e7d904b9745bf33fe5b9b64bcd274ff788b189 Mon Sep 17 00:00:00 2001 From: Semyon Moroz Date: Sun, 19 Oct 2025 19:31:11 +0400 Subject: [PATCH] [cmath] Rename positional-only param in log (#14897) --- stdlib/cmath.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/cmath.pyi b/stdlib/cmath.pyi index a08addcf5..aed4c6386 100644 --- a/stdlib/cmath.pyi +++ b/stdlib/cmath.pyi @@ -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]: ...