| | |
- _group(s)
- #perform the grouping from right to left
- atof(str, func=<function atof at 81f55b0>)
- Parses a string as a float according to the locale settings.
- atoi(str)
- Converts a string to an integer according to the locale settings.
- format(f, val, grouping=0)
- Formats a value in the same way that the % formatting would use,
but takes the current locale into account.
Grouping is applied if the third parameter is true.
- localeconv(...)
- () -> dict. Returns numeric and monetary locale-specific parameters.
- setlocale(...)
- (integer,string=None) -> string. Activates/queries locale processing.
- str(val)
- Convert float to integer, taking the locale into account.
- strcoll(...)
- string,string -> int. Compares two strings according to the locale.
- strxfrm(...)
- string -> string. Returns a string that behaves for cmp locale-aware.
- test()
|