From 8f6f3f404b3d46fb7fce1941a60dbeb20744533d Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Mon, 28 Sep 2015 14:41:52 -0700 Subject: [PATCH] move cmath.pyi into 2and3 --- builtins/{2.7 => 2and3}/cmath.pyi | 0 builtins/3/cmath.pyi | 50 ------------------------------- 2 files changed, 50 deletions(-) rename builtins/{2.7 => 2and3}/cmath.pyi (100%) delete mode 100644 builtins/3/cmath.pyi diff --git a/builtins/2.7/cmath.pyi b/builtins/2and3/cmath.pyi similarity index 100% rename from builtins/2.7/cmath.pyi rename to builtins/2and3/cmath.pyi diff --git a/builtins/3/cmath.pyi b/builtins/3/cmath.pyi deleted file mode 100644 index f672554ee..000000000 --- a/builtins/3/cmath.pyi +++ /dev/null @@ -1,50 +0,0 @@ -"""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: ...