# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ Support for POSIX locales. """ CHAR_MAX = 127 class Error(Exception): pass LC_ALL = 0 LC_COLLATE = 1 LC_CTYPE = 2 LC_MONETARY = 3 LC_NUMERIC = 4 LC_TIME = 5 __doc__ = 'Support for POSIX locales.' __name__ = '_locale' __package__ = None def _getdefaultlocale(): pass def localeconv(): """ () -> dict. Returns numeric and monetary locale-specific parameters. """ return {} def setlocale(integer, string=None): """ (integer,string=None) -> string. Activates/queries locale processing. """ return "" def strcoll(string, string): """ string,string -> int. Compares two strings according to the locale. """ return "" def strxfrm(string): """ string -> string. Returns a string that behaves for cmp locale-aware. """ return ""