mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Add math.cbrt() for Python 3.11 (#6375)
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user