mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-01 09:03:23 +08:00
Change numerous default values to ... (#1722)
This is the convention, and some default values (e.g. strings) apparently break pytype.
This commit is contained in:
committed by
Matthias Kramm
parent
66821993f6
commit
54dd6ba27c
@@ -70,7 +70,7 @@ class Real(Complex, SupportsFloat):
|
||||
@abstractmethod
|
||||
def __ceil__(self) -> int: ...
|
||||
@abstractmethod
|
||||
def __round__(self, ndigits: Optional[int] = None): ...
|
||||
def __round__(self, ndigits: Optional[int] = ...): ...
|
||||
def __divmod__(self, other): ...
|
||||
def __rdivmod__(self, other): ...
|
||||
@abstractmethod
|
||||
|
||||
Reference in New Issue
Block a user