Add isfinite() to cmath. (Python 3 only)

This commit is contained in:
Matthias Kramm
2015-09-28 14:48:08 -07:00
parent 8f6f3f404b
commit 93779bb3f8

View File

@@ -28,3 +28,6 @@ def sinh(x:_C) -> complex: ...
def sqrt(x:_C) -> complex: ...
def tan(x:_C) -> complex: ...
def tanh(x:_C) -> complex: ...
if sys.version_info[0] >= 3:
def isfinite(z:_C) -> bool: ...