# 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.' class __loader__(object): """ Meta path import for built-in modules. All methods are either class or static methods to avoid the need to instantiate the class. """ _ORIGIN = 'built-in' def create_module(self, spec): """ Create a built-in module """ pass def exec_module(self, module): """ Exec a built-in module """ pass def find_module(self, fullname, path=None): """ Find the built-in module. If 'path' is ever specified then the search is considered a failure. This method is deprecated. Use find_spec() instead. """ pass def find_spec(self, fullname, path=None, target=None): pass def get_code(self, fullname): """ Return None as built-in modules do not have code objects. """ pass def get_source(self, fullname): """ Return None as built-in modules do not have source code. """ pass def is_package(self, fullname): """ Return False as built-in modules are never packages. """ pass def load_module(self, fullname): """ Load the specified module into sys.modules and return it. This method is deprecated. Use loader.exec_module instead. """ pass def module_repr(self, module): """ Return repr for the module. The method is deprecated. The import machinery does the job itself. """ pass __name__ = '_locale' __package__ = '' __spec__ = 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): """ strxfrm(string) -> string. Return a string that can be used as a key for locale-aware comparisons. """ return ""