Skip to content

Commit

Permalink
Corrected a typo complextfloating -> complexfloating
Browse files Browse the repository at this point in the history
  • Loading branch information
DasVinch committed Aug 28, 2017
1 parent dc8c3ba commit f3302c7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions numpy-mypy/numpy/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -445,17 +445,17 @@ class float64(floating):
class float128(floating):
def __init__(self, value : Any = None) -> None: ...
class complexfloating(inexact): ...
class csingle(complextfloating):
class csingle(complexfloating):
def __init__(self, value : Any = None) -> None: ...
class complex_(complextfloating):
class complex_(complexfloating):
def __init__(self, value : Any = None) -> None: ...
class clongfloat(complextfloating):
class clongfloat(complexfloating):
def __init__(self, value : Any = None) -> None: ...
class complex64(complextfloating):
class complex64(complexfloating):
def __init__(self, value : Any = None) -> None: ...
class complex128(complextfloating):
class complex128(complexfloating):
def __init__(self, value : Any = None) -> None: ...
class complex256(complextfloating):
class complex256(complexfloating):
def __init__(self, value : Any = None) -> None: ...
class flexible(generic[_S], Generic[_S]): ...
class character(flexible[str]): ...
Expand Down Expand Up @@ -549,7 +549,7 @@ def zeros_like(a: Any, dtype: Any=None, order: str='K', subok: bool=True) -> nda
@overload
def abs(x: float, out: float=None) -> float: ...
@overload
def abs(x: _ArrayLike[complextfloating], out: ndarray[_U]=None) -> ndarray[float]: ...
def abs(x: _ArrayLike[complexfloating], out: ndarray[_U]=None) -> ndarray[float]: ...
def all(a: _ArrayLike[_S], axis: AxesType=None, out: '_ArrayLike[_U]'=None,
keepdims: bool=False) -> Union['ndarray[_U]', 'ndarray[bool]']: ...
def argmax(a: _ArrayLike[_U], axis: int=None,
Expand Down

0 comments on commit f3302c7

Please sign in to comment.