Files
typeshed/2.7/cmath.py
2015-09-15 07:57:26 -07:00

49 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 List, Tuple, Dict, Undefined, GenericType
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 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: ...