We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1acc290 commit 11e7d90Copy full SHA for 11e7d90
stdlib/cmath.pyi
@@ -23,7 +23,7 @@ def exp(z: _C, /) -> complex: ...
23
def isclose(a: _C, b: _C, *, rel_tol: SupportsFloat = 1e-09, abs_tol: SupportsFloat = 0.0) -> bool: ...
24
def isinf(z: _C, /) -> bool: ...
25
def isnan(z: _C, /) -> bool: ...
26
-def log(x: _C, base: _C = ..., /) -> complex: ...
+def log(z: _C, base: _C = ..., /) -> complex: ...
27
def log10(z: _C, /) -> complex: ...
28
def phase(z: _C, /) -> float: ...
29
def polar(z: _C, /) -> tuple[float, float]: ...
0 commit comments