mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Use '...' instead of 'pass' for function bodies
This commit is contained in:
@@ -5,44 +5,44 @@
|
||||
|
||||
from typing import List, Tuple, Dict, Undefined, GenericType
|
||||
|
||||
def acos(*args, **kwargs) -> complex: pass
|
||||
def acos(*args, **kwargs) -> complex: ...
|
||||
|
||||
def acosh(*args, **kwargs) -> complex: pass
|
||||
def acosh(*args, **kwargs) -> complex: ...
|
||||
|
||||
def asin(*args, **kwargs) -> complex: pass
|
||||
def asin(*args, **kwargs) -> complex: ...
|
||||
|
||||
def asinh(*args, **kwargs) -> complex: pass
|
||||
def asinh(*args, **kwargs) -> complex: ...
|
||||
|
||||
def atan(*args, **kwargs) -> complex: pass
|
||||
def atan(*args, **kwargs) -> complex: ...
|
||||
|
||||
def atanh(*args, **kwargs) -> complex: pass
|
||||
def atanh(*args, **kwargs) -> complex: ...
|
||||
|
||||
def cos(*args, **kwargs) -> complex: pass
|
||||
def cos(*args, **kwargs) -> complex: ...
|
||||
|
||||
def cosh(*args, **kwargs) -> complex: pass
|
||||
def cosh(*args, **kwargs) -> complex: ...
|
||||
|
||||
def exp(*args, **kwargs) -> complex: pass
|
||||
def exp(*args, **kwargs) -> complex: ...
|
||||
|
||||
def isinf(a: complex) -> bool: pass
|
||||
def isinf(a: complex) -> bool: ...
|
||||
|
||||
def isnan(a: complex) -> bool: pass
|
||||
def isnan(a: complex) -> bool: ...
|
||||
|
||||
def log(a: complex, *args, **kwargs) -> complex: pass
|
||||
def log(a: complex, *args, **kwargs) -> complex: ...
|
||||
|
||||
def log10(*args, **kwargs) -> complex: pass
|
||||
def log10(*args, **kwargs) -> complex: ...
|
||||
|
||||
def phase(a: complex) -> float: pass
|
||||
def phase(a: complex) -> float: ...
|
||||
|
||||
def polar(a: complex) -> tuple: pass
|
||||
def polar(a: complex) -> tuple: ...
|
||||
|
||||
def rect(a: float, b: float) -> complex: pass
|
||||
def rect(a: float, b: float) -> complex: ...
|
||||
|
||||
def sin(*args, **kwargs) -> complex: pass
|
||||
def sin(*args, **kwargs) -> complex: ...
|
||||
|
||||
def sinh(*args, **kwargs) -> complex: pass
|
||||
def sinh(*args, **kwargs) -> complex: ...
|
||||
|
||||
def sqrt(*args, **kwargs) -> complex: pass
|
||||
def sqrt(*args, **kwargs) -> complex: ...
|
||||
|
||||
def tan(*args, **kwargs) -> complex: pass
|
||||
def tan(*args, **kwargs) -> complex: ...
|
||||
|
||||
def tanh(*args, **kwargs) -> complex: pass
|
||||
def tanh(*args, **kwargs) -> complex: ...
|
||||
|
||||
Reference in New Issue
Block a user