mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
68 lines
1.9 KiB
Python
68 lines
1.9 KiB
Python
import sys
|
|
from decimal import (
|
|
Clamped as Clamped,
|
|
Context as Context,
|
|
ConversionSyntax as ConversionSyntax,
|
|
Decimal as Decimal,
|
|
DecimalException as DecimalException,
|
|
DecimalTuple as DecimalTuple,
|
|
DivisionByZero as DivisionByZero,
|
|
DivisionImpossible as DivisionImpossible,
|
|
DivisionUndefined as DivisionUndefined,
|
|
FloatOperation as FloatOperation,
|
|
Inexact as Inexact,
|
|
InvalidContext as InvalidContext,
|
|
InvalidOperation as InvalidOperation,
|
|
Overflow as Overflow,
|
|
Rounded as Rounded,
|
|
Subnormal as Subnormal,
|
|
Underflow as Underflow,
|
|
_ContextManager,
|
|
)
|
|
from typing import Final
|
|
from typing_extensions import TypeAlias
|
|
|
|
_TrapType: TypeAlias = type[DecimalException]
|
|
|
|
__version__: Final[str]
|
|
__libmpdec_version__: Final[str]
|
|
|
|
ROUND_DOWN: Final = "ROUND_DOWN"
|
|
ROUND_HALF_UP: Final = "ROUND_HALF_UP"
|
|
ROUND_HALF_EVEN: Final = "ROUND_HALF_EVEN"
|
|
ROUND_CEILING: Final = "ROUND_CEILING"
|
|
ROUND_FLOOR: Final = "ROUND_FLOOR"
|
|
ROUND_UP: Final = "ROUND_UP"
|
|
ROUND_HALF_DOWN: Final = "ROUND_HALF_DOWN"
|
|
ROUND_05UP: Final = "ROUND_05UP"
|
|
HAVE_CONTEXTVAR: Final[bool]
|
|
HAVE_THREADS: Final[bool]
|
|
MAX_EMAX: Final[int]
|
|
MAX_PREC: Final[int]
|
|
MIN_EMIN: Final[int]
|
|
MIN_ETINY: Final[int]
|
|
|
|
def setcontext(context: Context, /) -> None: ...
|
|
def getcontext() -> Context: ...
|
|
|
|
if sys.version_info >= (3, 11):
|
|
def localcontext(
|
|
ctx: Context | None = None,
|
|
*,
|
|
prec: int | None = ...,
|
|
rounding: str | None = ...,
|
|
Emin: int | None = ...,
|
|
Emax: int | None = ...,
|
|
capitals: int | None = ...,
|
|
clamp: int | None = ...,
|
|
traps: dict[_TrapType, bool] | None = ...,
|
|
flags: dict[_TrapType, bool] | None = ...,
|
|
) -> _ContextManager: ...
|
|
|
|
else:
|
|
def localcontext(ctx: Context | None = None) -> _ContextManager: ...
|
|
|
|
DefaultContext: Context
|
|
BasicContext: Context
|
|
ExtendedContext: Context
|