We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8358984 commit cd418e9Copy full SHA for cd418e9
2 files changed
stdlib/2/__builtin__.pyi
@@ -185,6 +185,8 @@ class int:
185
def __invert__(self) -> int: ...
186
def __trunc__(self) -> int: ...
187
if sys.version_info >= (3,):
188
+ def __ceil__(self) -> int: ...
189
+ def __floor__(self) -> int: ...
190
def __round__(self, ndigits: Optional[int] = ...) -> int: ...
191
def __getnewargs__(self) -> Tuple[int]: ...
192
stdlib/2and3/builtins.pyi
0 commit comments