Add math.cbrt() for Python 3.11 (#6375)

This commit is contained in:
Pavel Karateev
2021-11-25 12:00:01 +03:00
committed by GitHub
parent aa92ca9138
commit 2bd1c7dbab

View File

@@ -21,6 +21,10 @@ def asinh(__x: _SupportsFloatOrIndex) -> float: ...
def atan(__x: _SupportsFloatOrIndex) -> float: ...
def atan2(__y: _SupportsFloatOrIndex, __x: _SupportsFloatOrIndex) -> float: ...
def atanh(__x: _SupportsFloatOrIndex) -> float: ...
if sys.version_info >= (3, 11):
def cbrt(__x: _SupportsFloatOrIndex) -> float: ...
def ceil(__x: _SupportsFloatOrIndex) -> int: ...
if sys.version_info >= (3, 8):