File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -265,6 +265,9 @@ class float:
265
265
def __rpow__ (self , x : float , mod : None = ...) -> float : ...
266
266
def __getnewargs__ (self ) -> Tuple [float ]: ...
267
267
def __trunc__ (self ) -> int : ...
268
+ if sys .version_info >= (3 , 9 ):
269
+ def __ceil__ (self ) -> int : ...
270
+ def __floor__ (self ) -> int : ...
268
271
if sys .version_info >= (3 ,):
269
272
@overload
270
273
def __round__ (self , ndigits : None = ...) -> int : ...
Original file line number Diff line number Diff line change @@ -265,6 +265,9 @@ class float:
265
265
def __rpow__ (self , x : float , mod : None = ...) -> float : ...
266
266
def __getnewargs__ (self ) -> Tuple [float ]: ...
267
267
def __trunc__ (self ) -> int : ...
268
+ if sys .version_info >= (3 , 9 ):
269
+ def __ceil__ (self ) -> int : ...
270
+ def __floor__ (self ) -> int : ...
268
271
if sys .version_info >= (3 ,):
269
272
@overload
270
273
def __round__ (self , ndigits : None = ...) -> int : ...
You can’t perform that action at this time.
0 commit comments