mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-19 18:31:14 +08:00
Fix decimal and contextlib (#428)
* Decimal does not support __round__, and its __abs__ returns Decimal. * Fix contextmanager signature too.
This commit is contained in:
committed by
Matthias Kramm
parent
fd66ff21ae
commit
6e596e9609
@@ -2,7 +2,7 @@
|
||||
#
|
||||
# NOTE: This dynamically typed stub was automatically generated by stubgen.
|
||||
|
||||
from typing import Any, SupportsAbs, SupportsFloat, SupportsInt, SupportsRound
|
||||
from typing import Any, SupportsAbs, SupportsFloat, SupportsInt
|
||||
|
||||
ROUND_DOWN = ... # type: Any
|
||||
ROUND_HALF_UP = ... # type: Any
|
||||
@@ -44,7 +44,7 @@ def setcontext(context): ...
|
||||
def getcontext(): ...
|
||||
def localcontext(ctx=None): ...
|
||||
|
||||
class Decimal(SupportsAbs, SupportsFloat, SupportsInt, SupportsRound):
|
||||
class Decimal(SupportsAbs[Decimal], SupportsFloat, SupportsInt):
|
||||
def __new__(cls, value=..., context=None): ...
|
||||
@classmethod
|
||||
def from_float(cls, f): ...
|
||||
|
||||
Reference in New Issue
Block a user