Home
last modified time | relevance | path

Searched refs:_localeconv (Results 1 - 3 of 3) sorted by relevance

/third_party/python/Lib/
H A Dlocale.py102 _localeconv = localeconv variable
108 @functools.wraps(_localeconv)
110 d = _localeconv()
H A D_pydecimal.py3756 # PEP 3101 support. the _localeconv keyword argument should be
3758 def __format__(self, specifier, context=None, _localeconv=None):
3776 spec = _parse_format_specifier(specifier, _localeconv=_localeconv)
6188 def _parse_format_specifier(format_spec, _localeconv=None):
6252 if _localeconv is None:
6253 _localeconv = _locale.localeconv()
6257 format_dict['thousands_sep'] = _localeconv['thousands_sep']
6258 format_dict['grouping'] = _localeconv['grouping']
6259 format_dict['decimal_point'] = _localeconv['decimal_poin
[all...]
/third_party/python/Lib/test/
H A Dtest_decimal.py1164 return Decimal(x).__format__(fmt, _localeconv=override)

Completed in 23 milliseconds