mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
"""Stub file for the 'cmath' module."""
|
|
# This is an autogenerated file. It serves as a starting point
|
|
# for a more precise manual annotation of this module.
|
|
# Feel free to edit the source below, but remove this header when you do.
|
|
|
|
from typing import Any, List, Tuple, Dict, Generic
|
|
|
|
def acos(*args, **kwargs) -> complex: ...
|
|
|
|
def acosh(*args, **kwargs) -> complex: ...
|
|
|
|
def asin(*args, **kwargs) -> complex: ...
|
|
|
|
def asinh(*args, **kwargs) -> complex: ...
|
|
|
|
def atan(*args, **kwargs) -> complex: ...
|
|
|
|
def atanh(*args, **kwargs) -> complex: ...
|
|
|
|
def cos(*args, **kwargs) -> complex: ...
|
|
|
|
def cosh(*args, **kwargs) -> complex: ...
|
|
|
|
def exp(*args, **kwargs) -> complex: ...
|
|
|
|
def isfinite(a: complex) -> bool: ...
|
|
|
|
def isinf(a: complex) -> bool: ...
|
|
|
|
def isnan(a: complex) -> bool: ...
|
|
|
|
def log(a: complex, *args, **kwargs) -> complex: ...
|
|
|
|
def log10(*args, **kwargs) -> complex: ...
|
|
|
|
def phase(a: complex) -> float: ...
|
|
|
|
def polar(a: complex) -> tuple: ...
|
|
|
|
def rect(a: float, b: float) -> complex: ...
|
|
|
|
def sin(*args, **kwargs) -> complex: ...
|
|
|
|
def sinh(*args, **kwargs) -> complex: ...
|
|
|
|
def sqrt(*args, **kwargs) -> complex: ...
|
|
|
|
def tan(*args, **kwargs) -> complex: ...
|
|
|
|
def tanh(*args, **kwargs) -> complex: ...
|