mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-28 05:42:10 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -99,7 +99,7 @@ class Integral(Rational):
|
||||
def __int__(self) -> int: ...
|
||||
def __index__(self) -> int: ...
|
||||
@abstractmethod
|
||||
def __pow__(self, exponent: Any, modulus: Any | None = ...) -> Any: ...
|
||||
def __pow__(self, exponent: Any, modulus: Any | None = None) -> Any: ...
|
||||
@abstractmethod
|
||||
def __lshift__(self, other: Any) -> Any: ...
|
||||
@abstractmethod
|
||||
|
||||
Reference in New Issue
Block a user