Files
django-stubs/django/utils/numberformat.pyi
Maxim Kurnikov 89bb6eac75 improved version
2018-07-29 20:06:41 +03:00

17 lines
396 B
Python

from decimal import Decimal
from typing import (
Optional,
Tuple,
Union,
)
def format(
number: Union[float, Decimal, str],
decimal_sep: str,
decimal_pos: Optional[int] = ...,
grouping: Union[Tuple[int, int, int, int, int], Tuple[int, int, int], int] = ...,
thousand_sep: str = ...,
force_grouping: bool = ...,
use_l10n: Optional[bool] = ...
) -> str: ...